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
Agostini | |
Aiello | |
Albanese | |
Amato | |
Antonelli | |
Arena | |
Baldi | |
Barbieri | |
Barone | |
Basile |
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
/** | |
* Countries MySQL Tables | |
* Compiled by Atanas Bozhinov, 2015 | |
*/ | |
CREATE TABLE `eucountries` ( | |
`country_id` int(11) NOT NULL AUTO_INCREMENT, | |
`code` char(2) NOT NULL COMMENT 'Two-letter country code (ISO 3166-1 alpha-2)', | |
`name` varchar(64) NOT NULL COMMENT 'English country name', | |
`full_name` varchar(128) NOT NULL COMMENT 'Full English country name', |