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

13 lines
604 B

-- hh
-- 守卫信标首通记录修改
DROP TABLE `dun_guard_log`;
CREATE TABLE `dun_guard_log` (
`dun_id` int(11) UNSIGNED NOT NULL COMMENT '副本id',
`wave` int(11) UNSIGNED NOT NULL COMMENT '波数进度',
`role_id` bigint(20) UNSIGNED NOT NULL COMMENT '人物ID',
`team_id` int(32) UNSIGNED NOT NULL DEFAULT 0 COMMENT '队伍ID',
`role_data` varchar(3000) NOT NULL COMMENT '人物信息',
`time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '时间',
PRIMARY KEY(`dun_id`, `wave`, `role_id`)
) ENGINE=InnoDB CHARSET=utf8 COMMENT='守卫信标波数首通历史数据';