Core/DataStores: Updated db2 structures to 9.0.5

Port From (https://github.com/TrinityCore/TrinityCore/commit/34a8baba85bdd86f07730e387144954dd64372ad)
This commit is contained in:
hondacrx
2021-04-12 14:11:12 -04:00
parent 13631f6b4c
commit 084dc44a39
9 changed files with 63 additions and 30 deletions
@@ -0,0 +1,24 @@
ALTER TABLE `chr_customization_element` ADD `ChrCustItemGeoModifyID` int(11) NOT NULL DEFAULT '0' AFTER `ChrCustomizationDisplayInfoID`;
ALTER TABLE `item_bonus_tree_node`
ADD `ItemBonusListGroupID` int(11) NOT NULL DEFAULT '0' AFTER `ChildItemLevelSelectorID`,
ADD `ParentItemBonusTreeNodeID` int(11) NOT NULL DEFAULT '0' AFTER `ItemBonusListGroupID`;
ALTER TABLE `rand_prop_points`
ADD `DamageReplaceStatF` float NOT NULL DEFAULT '0' AFTER `ID`,
ADD `DamageSecondaryF` float NOT NULL DEFAULT '0' AFTER `DamageReplaceStatF`,
ADD `EpicF1` float NOT NULL DEFAULT '0' AFTER `DamageSecondary`,
ADD `EpicF2` float NOT NULL DEFAULT '0' AFTER `EpicF1`,
ADD `EpicF3` float NOT NULL DEFAULT '0' AFTER `EpicF2`,
ADD `EpicF4` float NOT NULL DEFAULT '0' AFTER `EpicF3`,
ADD `EpicF5` float NOT NULL DEFAULT '0' AFTER `EpicF4`,
ADD `SuperiorF1` float NOT NULL DEFAULT '0' AFTER `Epic5`,
ADD `SuperiorF2` float NOT NULL DEFAULT '0' AFTER `SuperiorF1`,
ADD `SuperiorF3` float NOT NULL DEFAULT '0' AFTER `SuperiorF2`,
ADD `SuperiorF4` float NOT NULL DEFAULT '0' AFTER `SuperiorF3`,
ADD `SuperiorF5` float NOT NULL DEFAULT '0' AFTER `SuperiorF4`,
ADD `GoodF1` float NOT NULL DEFAULT '0' AFTER `SuperiorF5`,
ADD `GoodF2` float NOT NULL DEFAULT '0' AFTER `GoodF1`,
ADD `GoodF3` float NOT NULL DEFAULT '0' AFTER `GoodF2`,
ADD `GoodF4` float NOT NULL DEFAULT '0' AFTER `GoodF3`,
ADD `GoodF5` float NOT NULL DEFAULT '0' AFTER `GoodF4`;