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
CREATE TABLE `Nationality` ( | |
`id` int(11) NOT NULL, | |
`name_en` varchar(50) COLLATE utf8_unicode_ci NOT NULL, | |
`name_fr` varchar(50) COLLATE utf8_unicode_ci NOT NULL | |
) ENGINE=InnoDB AUTO_INCREMENT=197 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; | |
INSERT INTO `Nationality` (`id`, `name_en`, `name_fr`) VALUES | |
(1, 'Afghan', 'Afghane'), | |
(2, 'Albanian', 'Albanaise'), | |
(3, 'Algerian', 'Algérienne'), |