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

11 lines
647 B

  1. -- 幻魔之家
  2. -- hh
  3. CREATE TABLE `home_boss_status`(
  4. `sub_module` int(11) UNSIGNED NOT NULL COMMENT '子功能id',
  5. `rank_index` int(11) UNSIGNED NOT NULL COMMENT '序号',
  6. `boss_id` int(11) UNSIGNED NOT NULL COMMENT 'boss id',
  7. `guild` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '社团id',
  8. `born_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '出生时间',
  9. `dead_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '死亡时间',
  10. `killer` varchar(255) NOT NULL DEFAULT "" COMMENT '击杀者',
  11. PRIMARY KEY(`sub_module`, `rank_index`, `boss_id`)
  12. )ENGINE=InnoDB CHARSET=utf8 COMMENT="幻魔之家boss信息";