Advertisement
LrdArc

Untitled

Dec 9th, 2015
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `countries` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `country_code` varchar(255) NOT NULL,
  4. `country_name` varchar(255) NOT NULL,
  5. PRIMARY KEY (`id`)
  6. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement