源战役
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

26 linhas
1.4 KiB

1 mês atrás
  1. -- zmh 外援存储
  2. ALTER TABLE `cross_guild_war_guild_info`
  3. ADD COLUMN `help_ups` varchar(6000) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '[]' COMMENT '外援列表' AFTER `sign_ups`;
  4. CREATE TABLE `log_cgwar_city_info` (
  5. `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '自增id',
  6. `zone_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '分区Id',
  7. `room_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '房间Id',
  8. `city_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '城池Id',
  9. `server_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '游戏服ServerId',
  10. `server_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '游戏服编号(玩家看到的服数)',
  11. `guild_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '帮派Id',
  12. `guild_name` varchar(50) NOT NULL DEFAULT '' COMMENT '帮派名称',
  13. `guild_power` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '帮派战力',
  14. `chief_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '帮主Id',
  15. `chief_name` varchar(50) NOT NULL DEFAULT '' COMMENT '帮主名称',
  16. `chief_power` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '帮主战力',
  17. `time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '时间',
  18. PRIMARY KEY (`id`)
  19. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='跨服国战往期战报';
  20. ALTER TABLE `cross_guild_war_last_zone`
  21. ADD COLUMN `fact_id` int(11) NOT NULL DEFAULT 0 COMMENT '阵营ID' AFTER `zone_id`;