diff options
| author | Shauren <shauren.trinity@gmail.com> | 2019-07-14 15:21:32 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2019-07-14 19:20:45 +0200 |
| commit | 3262bc827dbce8d659c249e23cd585b4c86f00b3 (patch) | |
| tree | dcadc7f785b13c7d3e179810052b324283221a00 /sql | |
| parent | 3714bf8e7a5f4d1b066303c0f9bde0becc64e5eb (diff) | |
Core/DataStores: Updated db2 structures to 8.2
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/master/2019_07_14_00_hotfixes.sql | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2019_07_14_00_hotfixes.sql b/sql/updates/hotfixes/master/2019_07_14_00_hotfixes.sql new file mode 100644 index 00000000000..ac39fc76248 --- /dev/null +++ b/sql/updates/hotfixes/master/2019_07_14_00_hotfixes.sql @@ -0,0 +1,74 @@ +-- +-- Table structure for table `cfg_regions` +-- +ALTER TABLE `cfg_regions` + DROP `ChallengeTimeOffset1`, + DROP `ChallengeTimeOffset2`; + +-- +-- Table structure for table `content_tuning` +-- +ALTER TABLE `content_tuning` + ADD `ExpansionID` int(11) NOT NULL DEFAULT '0' AFTER `Flags`, + DROP `ExpectedStatModID`, + DROP `DifficultyESMID`; + +-- +-- Table structure for table `content_tuning_x_expected` +-- +DROP TABLE IF EXISTS `content_tuning_x_expected`; +CREATE TABLE `content_tuning_x_expected` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ExpectedStatModID` int(11) NOT NULL DEFAULT '0', + `ContentTuningID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- +-- Table structure for table `creature_model_data` +-- +ALTER TABLE `creature_model_data` + ADD `Unknown820_1` tinyint(4) NOT NULL DEFAULT '0' AFTER `TamedPetBaseScale`, + ADD `Unknown820_2` float NOT NULL DEFAULT '0' AFTER `Unknown820_1`, + ADD `Unknown820_31` float NOT NULL DEFAULT '0' AFTER `Unknown820_2`, + ADD `Unknown820_32` float NOT NULL DEFAULT '0' AFTER `Unknown820_31`; + +-- +-- Table structure for table `garr_follower` +-- +ALTER TABLE `garr_follower` MODIFY `HordeGarrClassSpecID` int(11) NOT NULL DEFAULT '0' AFTER `AllianceGarrFollRaceID`; +ALTER TABLE `garr_follower` MODIFY `AllianceGarrClassSpecID` int(11) NOT NULL DEFAULT '0' AFTER `HordeGarrClassSpecID`; + +-- +-- Table structure for table `glyph_properties` +-- +ALTER TABLE `glyph_properties` ADD `SpellIconFileDataID` int(11) NOT NULL DEFAULT '0' AFTER `GlyphExclusiveCategoryID`; +ALTER TABLE `glyph_properties` DROP `SpellIconID`; + +-- +-- Table structure for table `modifier_tree` +-- +ALTER TABLE `modifier_tree` MODIFY `Type` int(11) NOT NULL DEFAULT '0' AFTER `Amount`; + +-- +-- Table structure for table `mount_capability` +-- +ALTER TABLE `mount_capability` ADD `PlayerConditionID` int(11) NOT NULL DEFAULT '0' AFTER `ReqMapID`; + +-- +-- Table structure for table `rand_prop_points` +-- +ALTER TABLE `rand_prop_points` ADD `DamageSecondary` int(11) NOT NULL DEFAULT '0' AFTER `DamageReplaceStat`; + +-- +-- Table structure for table `spell_misc` +-- +ALTER TABLE `spell_misc` ADD `ContentTuningID` int(11) NOT NULL DEFAULT '0' AFTER `ActiveIconFileDataID`; + +-- +-- Table structure for table `ui_map_link` +-- +ALTER TABLE `ui_map_link` + ADD `OverrideHighlightFileDataID` int(11) NOT NULL DEFAULT '0' AFTER `ChildUiMapID`, + ADD `OverrideHighlightAtlasID` int(11) NOT NULL DEFAULT '0' AFTER `OverrideHighlightFileDataID`; |
