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

18 linhas
910 B

1 mês atrás
  1. -- liushl
  2. CREATE TABLE `madness_land_zone_guild_rank`(
  3. `zone_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '分区id',
  4. `rank` int(11) NOT NULL DEFAULT '0' COMMENT '排名',
  5. `server_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '服务器',
  6. `guild_name` varchar(50) NOT NULL DEFAULT '[]' COMMENT '公会名字',
  7. `score` int(11) NOT NULL DEFAULT '0' COMMENT '积分',
  8. PRIMARY KEY(`zone_id`, `rank`)
  9. )ENGINE=InnoDB CHARSET=utf8 COMMENT="狂战领域-跨服公会排名(合服保留)";
  10. CREATE TABLE `madness_land_guild_rank`(
  11. `rank` int(11) NOT NULL DEFAULT '0' COMMENT '排名',
  12. `guild_name` varchar(50) NOT NULL DEFAULT '[]' COMMENT '公会名字',
  13. `score` int(11) NOT NULL DEFAULT '0' COMMENT '积分',
  14. PRIMARY KEY(`rank`)
  15. )ENGINE=InnoDB CHARSET=utf8 COMMENT="狂战领域-本服公会排名(合服清空)";
  16. drop table if exists madness_land_zone_server_rank;