源战役
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

10 Zeilen
502 B

-- 副本翻牌
DROP TABLE IF EXISTS `role_dun_flop`;
CREATE TABLE `role_dun_flop`(
`role_id` bigint(20) UNSIGNED NOT NULL COMMENT '玩家id',
`treasure_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '当前稀有奖池id',
`flop_val` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '当前祝福值进度',
`treasured` varchar(500) NOT NULL DEFAULT '[]' COMMENT '当前奖池已领取奖励',
PRIMARY KEY(`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='副本翻牌数据';