源战役
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.

8 lines
554 B

  1. -- tyl
  2. -- 扭蛋次数奖励
  3. CREATE TABLE IF NOT EXISTS `capsule_egg_times_reward` (
  4. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色Id',
  5. `pool_type` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '奖池类型',
  6. `draw_times` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '抽奖次数',
  7. `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '奖励领取状态 1-已领取',
  8. PRIMARY KEY (`role_id`,`pool_type`,`draw_times`)
  9. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='龙神宝库-次数奖励表';