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

9 lines
561 B

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