Guest User

Untitled

a guest
Jul 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `categories_main` (
  2. `id` int(11) NOT NULL auto_increment,
  3. `name` varchar(200) character set utf8 collate utf8_bin NOT NULL,
  4. PRIMARY KEY (`id`)
  5. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  6.  
  7.  
  8.  
  9. CREATE TABLE IF NOT EXISTS `categories_sub` (
  10. `id` int(11) NOT NULL auto_increment,
  11. `name` varchar(200) NOT NULL,
  12. PRIMARY KEY (`id`)
  13. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Add Comment
Please, Sign In to add comment