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

12 rivejä
647 B

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