diff options
| author | Shauren <shauren.trinity@gmail.com> | 2017-06-14 23:51:52 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2017-06-14 23:51:52 +0200 |
| commit | bfbb948c73d6e6a556776a4fd0daf2c0f84a02c4 (patch) | |
| tree | e9d7eda080edfdbea3b05876a7ac807f2faa6163 /sql | |
| parent | ff1a71d6f72734f32cb83e1a24b159ff655011ad (diff) | |
Core/DataStores: Updated db2 structures to 7.2.5.24330
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/master/2017_06_14_00_hotfixes.sql | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2017_06_14_00_hotfixes.sql b/sql/updates/hotfixes/master/2017_06_14_00_hotfixes.sql new file mode 100644 index 00000000000..f8b4215390a --- /dev/null +++ b/sql/updates/hotfixes/master/2017_06_14_00_hotfixes.sql @@ -0,0 +1,36 @@ +DROP TABLE IF EXISTS `area_poi`; +DROP TABLE IF EXISTS `area_poi_state`; +DROP TABLE IF EXISTS `chr_upgrade_bucket`; +DROP TABLE IF EXISTS `chr_upgrade_bucket_spell`; +DROP TABLE IF EXISTS `chr_upgrade_tier`; + +ALTER TABLE `conversation_line` CHANGE `Id` `ID` int(10) UNSIGNED NOT NULL DEFAULT '0' FIRST; + +ALTER TABLE `currency_types` + ADD `InventoryIconFileDataID` int(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `Quality`, + DROP `InventoryIcon1`, + DROP `InventoryIcon2`; + +ALTER TABLE `emotes` MODIFY `RaceMask` int(11) NOT NULL DEFAULT '0' AFTER `EmoteFlags`; + +DROP TABLE IF EXISTS `item_level_selector`; + +ALTER TABLE `heirloom` + ADD `UpgradeItemID3` int(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `UpgradeItemID2`, + ADD `ItemBonusListID3` smallint(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `ItemBonusListID2`; + +ALTER TABLE `holidays` + ADD `TextureFileDataID1` int(11) NOT NULL DEFAULT '0' AFTER `HolidayDescriptionID`, + ADD `TextureFileDataID2` int(11) NOT NULL DEFAULT '0' AFTER `TextureFileDataID1`, + ADD `TextureFileDataID3` int(11) NOT NULL DEFAULT '0' AFTER `TextureFileDataID2`, + DROP `TextureFilename`; + +ALTER TABLE `lfg_dungeons` MODIFY `ID` int(10) UNSIGNED NOT NULL DEFAULT '0' FIRST, + ADD `TextureFileDataID` int(11) NOT NULL DEFAULT '0' AFTER `MentorCharLevel`, + ADD `RewardIconFileDataID` int(11) NOT NULL DEFAULT '0' AFTER `TextureFileDataID`, + ADD `ProposalTextureFileDataID` int(11) NOT NULL DEFAULT '0' AFTER `RewardIconFileDataID`, + DROP `TextureFilename`; + +ALTER TABLE `map_difficulty` ADD `Flags` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `LockID`; + +DROP TABLE IF EXISTS `spell_effect_group_size`; |
