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

17 line
780 B

  1. -- 混乱星域新表
  2. -- hh
  3. CREATE TABLE `deserted_boss_status`(
  4. `zone_id` bigint(20) UNSIGNED NOT NULL COMMENT '分区id',
  5. `fac_id` int(11) UNSIGNED NOT NULL COMMENT '阵营id',
  6. `boss_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '怪物id',
  7. `dead_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '死亡时间',
  8. `killer` varchar(255) NOT NULL DEFAULT 0 COMMENT '击杀者',
  9. `srv_num` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '击杀者服务器编号',
  10. PRIMARY KEY(`zone_id`, `fac_id`, `boss_id`)
  11. )ENGINE=InnoDB CHARSET=utf8 COMMENT="混乱星域boss状态";
  12. -- huangyongxing
  13. ALTER TABLE `center_zones`
  14. ADD COLUMN `faction_names` varchar(200) NOT NULL DEFAULT '[]' COMMENT '阵营名字列表(空时使用默认名)' AFTER `server_ids`;