aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/hotfixes/master
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2020-02-17 23:58:47 +0100
committerShauren <shauren.trinity@gmail.com>2020-02-17 23:58:47 +0100
commit90628b7d29e041310abc25438f219a0c73c41bae (patch)
tree27bf5b09c958335bc1b17189cedb08dc4e5886e4 /sql/updates/hotfixes/master
parent462a10de17003631957b69e578e7e4c55ed1ef61 (diff)
Core/DataStores: Updated db2 structures to 8.3.0
Diffstat (limited to 'sql/updates/hotfixes/master')
-rw-r--r--sql/updates/hotfixes/master/2020_02_17_00_hotfixes.sql21
1 files changed, 21 insertions, 0 deletions
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`;