LDP/LDP/lampadas/database/language.sql

10 lines
94 B
SQL

DROP TABLE language;
CREATE TABLE language
(
isocode CHAR(2),
PRIMARY KEY (isocode)
);