源战役
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
553 B

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