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

7 rivejä
435 B

-- tyl boss免战时间
CREATE TABLE `boss_protect_time` (
`role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色Id',
`boss_type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT 'boss类型(1-赏金 2-星域幻魔)',
`protect_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '免战时间',
PRIMARY KEY (`role_id`,`boss_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='boss免战时间';