源战役
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

24 líneas
935 B

  1. -- 排行榜达成目标数据表
  2. -- hh
  3. CREATE TABLE `common_rank_first_top`(
  4. `rank_type` int(11) UNSIGNED NOT NULL COMMENT '排行类型',
  5. `target` bigint(20) UNSIGNED NOT NULL COMMENT '目标',
  6. `role_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '角色id',
  7. `time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '时间',
  8. PRIMARY KEY(`rank_type`, `target`)
  9. ) ENGINE=InnoDB CHARSET=utf8 COMMENT="排行榜首度目标达成数据";
  10. CREATE TABLE `role_first_top_reward`(
  11. `role_id` bigint(20) UNSIGNED NOT NULL COMMENT '玩家id',
  12. `rank_type` int(11) UNSIGNED NOT NULL COMMENT '排行类型',
  13. `target` bigint(20) UNSIGNED NOT NULL COMMENT '目标',
  14. PRIMARY KEY(`role_id`, `rank_type`, `target`)
  15. ) ENGINE=InnoDB CHARSET=utf8 COMMENT="玩家目标奖励";
  16. ALTER TABLE `common_rank_role`
  17. MODIFY COLUMN `value` bigint(20);
  18. ALTER TABLE `common_rank_guild`
  19. MODIFY COLUMN `value` bigint(20);