diff options
| author | Shauren <shauren.trinity@gmail.com> | 2023-07-12 16:29:00 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2023-07-12 16:29:00 +0200 |
| commit | 0cea730fa23473a85c47451c3bd13df816f2b6e4 (patch) | |
| tree | 960078875798c5846a1aa465051da876642067e1 /sql/updates/hotfixes | |
| parent | 252da139adedd20c297ce7bdd2abed2234fa1bb6 (diff) | |
Core: Update to 10.1.5
Diffstat (limited to 'sql/updates/hotfixes')
| -rw-r--r-- | sql/updates/hotfixes/master/2023_07_12_00_hotfixes.sql | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2023_07_12_00_hotfixes.sql b/sql/updates/hotfixes/master/2023_07_12_00_hotfixes.sql new file mode 100644 index 00000000000..d2ee5d6663a --- /dev/null +++ b/sql/updates/hotfixes/master/2023_07_12_00_hotfixes.sql @@ -0,0 +1,33 @@ +-- +-- Table structure for table `conditional_chr_model` +-- +DROP TABLE IF EXISTS `conditional_chr_model`; +CREATE TABLE `conditional_chr_model` ( + `ID` int(11) NOT NULL DEFAULT '0', + `ChrModelID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrCustomizationReqID` int(11) NOT NULL DEFAULT '0', + `PlayerConditionID` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationCategoryID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + + +ALTER TABLE `area_table` MODIFY `MountFlags` int NOT NULL DEFAULT 0 AFTER `AmbientMultiplier`; + +ALTER TABLE `chr_customization_req` ADD `RaceMask` bigint NOT NULL DEFAULT 0 AFTER `ID`; + +ALTER TABLE `criteria` MODIFY `StartEvent` int NOT NULL DEFAULT 0 AFTER `ModifierTreeId`; +ALTER TABLE `criteria` MODIFY `FailEvent` int NOT NULL DEFAULT 0 AFTER `StartTimer`; +ALTER TABLE `criteria` MODIFY `Flags` int NOT NULL DEFAULT 0 AFTER `FailAsset`; + +ALTER TABLE `criteria_tree` MODIFY `Operator` int NOT NULL DEFAULT 0 AFTER `Amount`; + +ALTER TABLE `gameobject_display_info` ADD `AlternateDisplayType` int NOT NULL DEFAULT 0 AFTER `OverrideNameScale`; +ALTER TABLE `gameobject_display_info` ADD `ClientCreatureDisplayInfoID` int NOT NULL DEFAULT 0 AFTER `AlternateDisplayType`; +ALTER TABLE `gameobject_display_info` ADD `ClientItemID` int NOT NULL DEFAULT 0 AFTER `ClientCreatureDisplayInfoID`; + +ALTER TABLE `spell_category` MODIFY `Flags` int NOT NULL DEFAULT 0 AFTER `Name`; + +ALTER TABLE `ui_map` ADD `VisibilityPlayerConditionID2` int NOT NULL DEFAULT 0 AFTER `BountyDisplayLocation`; |
