This file contains hidden or 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
DROP TABLE IF EXISTS `countries`; | |
CREATE TABLE `countries` ( | |
`iso_code` char(2) PRIMARY KEY NOT NULL, | |
`name` varchar(80) NOT NULL, | |
`phone_code` int(5) NOT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
-- | |
-- Dumping data for table `countries` | |
-- |