源战役
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
502 B

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