This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE country ( | |
id int NOT NULL PRIMARY KEY, | |
iso varchar NOT NULL, | |
name varchar NOT NULL, | |
nicename varchar NOT NULL, | |
iso3 varchar DEFAULT NULL, | |
numcode smallint DEFAULT NULL, | |
phonecode int NOT NULL | |
); | |