源战役
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
561 B

  1. -- jiangxun
  2. -- 玩家竞技场cd冷却相关数据表
  3. CREATE TABLE `arena_challenge_cd` (
  4. `role_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '玩家角色id',
  5. `last_use` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '最后一次使用竞技场时间',
  6. `rest_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '剩余冷却时间',
  7. `trigger1` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否触发竞技场使用限制',
  8. PRIMARY KEY (`role_id`)
  9. ) ENGINE = InnoDB CHARACTER SET = utf8 COMMENT = '竞技场玩家挑战cd冷却相关参数表';