Advertisement
gandarainpanjaitan

Untitled

Apr 24th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. CREATE TABLE `master_city` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `country_id` int(11) NOT NULL,
  4. `name` varchar(255) DEFAULT NULL,
  5. PRIMARY KEY (`id`)
  6. ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1
  7.  
  8. CREATE TABLE `master_country` (
  9. `id` int(11) NOT NULL AUTO_INCREMENT,
  10. `name` varchar(255) NOT NULL,
  11. `country_code` varchar(5) DEFAULT NULL,
  12. `phone_prefix` varchar(10) DEFAULT NULL,
  13. PRIMARY KEY (`id`)
  14. ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement