Advertisement
ahmadtri26

xmall_master_cat

Jan 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `xmall_master_category` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `sort_seq` int(11) DEFAULT NULL,
  4. `category` varchar(255) DEFAULT NULL,
  5. `category_km` varchar(255) DEFAULT NULL,
  6. `category_cn` varchar(255) DEFAULT NULL,
  7. `category_kr` varchar(255) DEFAULT NULL,
  8. `category_jp` varchar(255) DEFAULT NULL,
  9. `img` varchar(255) DEFAULT NULL,
  10. PRIMARY KEY (`id`)
  11. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement