源战役
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

15 行
702 B

-- hh
-- boss关注修改字段
ALTER TABLE `local_boss_focus`
ADD COLUMN `boss_type` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT "boss类型" AFTER `boss_id`;
-- liushl
CREATE TABLE daily_consume_log(
`role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
`zero_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '0点时间戳',
`gold` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '元宝数',
`bgold` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '绑元数',
`coin` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '铜币数',
PRIMARY KEY (`role_id`,`zero_time`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='每日消费日志(合服合并保留)';