· 7 years ago · Feb 18, 2019, 12:40 PM
1SET FOREIGN_KEY_CHECKS=0;
2-- ----------------------------
3-- Table structure for `sash`
4-- ----------------------------
5DROP TABLE IF EXISTS `sash`;
6CREATE TABLE `sash` (
7 `pid` int(11) NOT NULL,
8 `time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
9 `x` int(1) NOT NULL,
10 `y` int(1) NOT NULL,
11 `item_vnum` int(11) NOT NULL,
12 `item_uid` int(11) NOT NULL,
13 `item_count` smallint(3) NOT NULL,
14 `item_abs_chance` smallint(3) NOT NULL,
15 `success` varbinary(3) NOT NULL
16) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_cs ROW_FORMAT=FIXED;
17
18-- ----------------------------
19-- Records of sash
20-- ----------------------------