TDB 920.22031 - 2022/03/06

This commit is contained in:
TDB Release
2022-03-06 15:20:27 +00:00
parent b7fa116704
commit 85b15a4b8c
639 changed files with 276 additions and 94 deletions

View File

@@ -1 +0,0 @@
ALTER TABLE `characters` DROP `stable_slots`;

View File

@@ -1,3 +0,0 @@
ALTER TABLE `characters` ADD `summonedPetNumber` int unsigned NOT NULL DEFAULT '0' AFTER `extra_flags`;
UPDATE `characters` SET `summonedPetNumber` = COALESCE((SELECT `id` FROM `character_pet` WHERE `owner` = `guid` AND `slot` = 0 AND `curhealth` > 0), 0);

View File

@@ -1,3 +0,0 @@
ALTER TABLE `character_pet` CHANGE `slot` `slot` smallint NOT NULL DEFAULT '-1';
UPDATE `character_pet` SET `slot` = -1 WHERE `slot` = 100;

View File

@@ -1 +0,0 @@
ALTER TABLE `auctionhouse` ADD `serverFlags` tinyint unsigned NOT NULL DEFAULT '0' AFTER `endTime`;

View File

@@ -1,3 +1,3 @@
-- TDB 915.22012 characters
-- TDB 920.22031 characters
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/characters', 'ARCHIVED');