· 7 years ago · Oct 19, 2018, 08:46 PM
1SET FOREIGN_KEY_CHECKS=0;
2
3-- ----------------------------
4-- Table structure for achievementshop_items
5-- ----------------------------
6DROP TABLE IF EXISTS `achievementshop_items`;
7CREATE 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;