Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. SET FOREIGN_KEY_CHECKS=0;
  2.  
  3. -- ----------------------------
  4. -- Table structure for achievementshop_items
  5. -- ----------------------------
  6. DROP TABLE IF EXISTS `achievementshop_items`;
  7. CREATE TABLE `achievementshop_items` (
  8. `id` int(11) NOT NULL AUTO_INCREMENT,
  9. `category` int(11) NOT NULL,
  10. `vnum` int(11) NOT NULL,
  11. `price` int(11) NOT NULL,
  12. PRIMARY KEY (`id`)
  13. ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement