diff options
| author | Shauren <shauren.trinity@gmail.com> | 2020-02-17 23:58:47 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2020-02-17 23:58:47 +0100 |
| commit | 90628b7d29e041310abc25438f219a0c73c41bae (patch) | |
| tree | 27bf5b09c958335bc1b17189cedb08dc4e5886e4 /sql/updates | |
| parent | 462a10de17003631957b69e578e7e4c55ed1ef61 (diff) | |
Core/DataStores: Updated db2 structures to 8.3.0
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/characters/master/2020_02_17_00_characters.sql | 6 | ||||
| -rw-r--r-- | sql/updates/hotfixes/master/2020_02_17_00_hotfixes.sql | 21 |
2 files changed, 27 insertions, 0 deletions
diff --git a/sql/updates/characters/master/2020_02_17_00_characters.sql b/sql/updates/characters/master/2020_02_17_00_characters.sql index 171f0461235..fe5e8134c8d 100644 --- a/sql/updates/characters/master/2020_02_17_00_characters.sql +++ b/sql/updates/characters/master/2020_02_17_00_characters.sql @@ -1 +1,7 @@ UPDATE `character_inventory` SET `slot`=`slot`+4 WHERE `slot`>=47 AND `bag`=0;
+
+ALTER TABLE `item_instance_azerite`
+ ADD `selectedAzeriteEssences1azeriteEssenceId4` int(10) unsigned NULL DEFAULT '0' AFTER `selectedAzeriteEssences1azeriteEssenceId3`,
+ ADD `selectedAzeriteEssences2azeriteEssenceId4` int(10) unsigned NULL DEFAULT '0' AFTER `selectedAzeriteEssences2azeriteEssenceId3`,
+ ADD `selectedAzeriteEssences3azeriteEssenceId4` int(10) unsigned NULL DEFAULT '0' AFTER `selectedAzeriteEssences3azeriteEssenceId3`,
+ ADD `selectedAzeriteEssences4azeriteEssenceId4` int(10) unsigned NULL DEFAULT '0' AFTER `selectedAzeriteEssences4azeriteEssenceId3`;
diff --git a/sql/updates/hotfixes/master/2020_02_17_00_hotfixes.sql b/sql/updates/hotfixes/master/2020_02_17_00_hotfixes.sql new file mode 100644 index 00000000000..d7505bd0eb6 --- /dev/null +++ b/sql/updates/hotfixes/master/2020_02_17_00_hotfixes.sql @@ -0,0 +1,21 @@ +ALTER TABLE `chr_races` ADD `TransmogrifyDisabledSlotMask` int(11) NOT NULL DEFAULT '0' AFTER `HelmVisFallbackRaceID`; + +ALTER TABLE `content_tuning_x_expected` ADD `MythicPlusSeasonID` int(11) NOT NULL DEFAULT '0' AFTER `ExpectedStatModID`; + +ALTER TABLE `criteria_tree` MODIFY `Flags` int(11) NOT NULL DEFAULT '0' AFTER `OrderIndex`; + +ALTER TABLE `currency_types` + ADD `ConvertToPlayerExperience` int(11) NOT NULL DEFAULT '0' AFTER `ItemGroupSoundsID`, + ADD `PlayerConditionID` int(11) NOT NULL DEFAULT '0' AFTER `ConvertToPlayerExperience`; + +ALTER TABLE `item_appearance` DROP `SubclassID`; + +ALTER TABLE `mount` + ADD `MountSpecialRiderAnimKitID` int(11) NOT NULL DEFAULT '0' AFTER `UiModelSceneID`, + ADD `MountSpecialSpellVisualKitID` int(11) NOT NULL DEFAULT '0' AFTER `MountSpecialRiderAnimKitID`; + +ALTER TABLE `spell_visual_kit` CHANGE `Flags` `Flags1` int(11) NOT NULL DEFAULT '0' AFTER `DelayMax`; +ALTER TABLE `spell_visual_kit` ADD `Flags2` int(11) NOT NULL DEFAULT '0' AFTER `Flags1`; +ALTER TABLE `spell_visual_kit` MODIFY `FallbackSpellVisualKitId` int(11) NOT NULL DEFAULT '0' AFTER `FallbackPriority`; + +ALTER TABLE `ui_map` ADD `AlternateUiMapGroup` int(11) NOT NULL DEFAULT '0' AFTER `BkgAtlasID`; |
