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

9 lines
534 B

  1. -- 本服BOSS状态
  2. CREATE TABLE `local_boss_status` (
  3. `boss_id` int(32) unsigned NOT NULL DEFAULT '0' COMMENT 'BOSS怪物id',
  4. `boss_type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '怪物类型',
  5. `born_time` int(32) unsigned NOT NULL DEFAULT '0' COMMENT '出生时间',
  6. `dead_time` int(32) unsigned NOT NULL DEFAULT '0' COMMENT '死亡时间',
  7. `killer` varchar(100) NOT NULL DEFAULT '<<>>' COMMENT '击杀者',
  8. PRIMARY KEY (`boss_id`)
  9. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='本服BOSS状态##合服清空';