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

  1. -- 幻光副本
  2. -- hh
  3. CREATE TABLE `role_dun_visus`(
  4. `role_id` bigint(20) UNSIGNED NOT NULL COMMENT '玩家id',
  5. `dun_id` int(11) UNSIGNED NOT NULL COMMENT '副本id',
  6. `pass_waves` varchar(500) NOT NULL DEFAULT '[]' COMMENT '今日首通波数',
  7. `time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '时间',
  8. PRIMARY KEY(`role_id`, `dun_id`)
  9. )ENGINE=InnoDB CHARSET=utf8 COMMENT="幻光副本数据";