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

13 lines
553 B

-- zmh
-- 清理玩家已接日常
DELETE FROM `task_bag` WHERE `type` = 7;
-- liushl
ALTER TABLE `market_goods` ADD COLUMN
`off_shelf` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否流拍下架' AFTER `sys_buyback_count`;
-- 宠物副本
truncate table dun_pet_rank;
alter table dun_pet_rank add column `dun_wave` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '通关副本波数' AFTER `score`;
alter table dun_pet_rank add column `old_dun_wave` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '昨日通关副本波数' AFTER `old_score`;