源战役
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

10 lignes
418 B

il y a 1 mois
  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="幻光副本数据";