Messed up the commit history, so here is all the files rip, Credit to TrinityCore
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
-- TDB 1007.23041 hotfixes
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/10.x/hotfixes', 'ARCHIVED');
|
||||
@@ -0,0 +1,40 @@
|
||||
--
|
||||
-- Table structure for table `battle_pet_ability`
|
||||
--
|
||||
DROP TABLE IF EXISTS `battle_pet_ability`;
|
||||
CREATE TABLE `battle_pet_ability` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Name` text,
|
||||
`Description` text,
|
||||
`IconFileDataID` int(11) NOT NULL DEFAULT '0',
|
||||
`PetTypeEnum` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`Cooldown` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`BattlePetVisualID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`Flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `battle_pet_ability_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `battle_pet_ability_locale`;
|
||||
CREATE TABLE `battle_pet_ability_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Name_lang` text,
|
||||
`Description_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
/*!50500 PARTITION BY LIST COLUMNS(locale)
|
||||
(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB,
|
||||
PARTITION esES VALUES IN ('esES') ENGINE = InnoDB,
|
||||
PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB,
|
||||
PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB,
|
||||
PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB,
|
||||
PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB,
|
||||
PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB,
|
||||
PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB,
|
||||
PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB,
|
||||
PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */;
|
||||
@@ -0,0 +1,17 @@
|
||||
ALTER TABLE `chr_customization_choice` ADD `SoundKitID` int NOT NULL DEFAULT 0 AFTER `AddedInPatch`;
|
||||
|
||||
ALTER TABLE `chr_customization_element` ADD `AnimKitID` int NOT NULL DEFAULT 0 AFTER `ChrCustomizationVoiceID`;
|
||||
|
||||
ALTER TABLE `content_tuning` ADD `QuestXpMultiplier` float NOT NULL DEFAULT 0 AFTER `MinItemLevel`;
|
||||
|
||||
ALTER TABLE `curve_point` MODIFY `CurveID` int NOT NULL DEFAULT 0 AFTER `ID`;
|
||||
|
||||
ALTER TABLE `item_bonus_tree_node` ADD `Unknown1010_1` int NOT NULL DEFAULT 0 AFTER `IblGroupPointsModSetID`;
|
||||
ALTER TABLE `item_bonus_tree_node` ADD `Unknown1010_2` int NOT NULL DEFAULT 0 AFTER `Unknown1010_1`;
|
||||
|
||||
ALTER TABLE `movie` ADD `SubtitleFileFormat` int NOT NULL DEFAULT 0 AFTER `SubtitleFileDataID`;
|
||||
|
||||
ALTER TABLE `ui_map` MODIFY `System` tinyint UNSIGNED NOT NULL DEFAULT 0 AFTER `Flags`;
|
||||
ALTER TABLE `ui_map` MODIFY `Type` tinyint UNSIGNED NOT NULL DEFAULT 0 AFTER `System`;
|
||||
|
||||
ALTER TABLE `vehicle` MODIFY `FlagsB` int NOT NULL DEFAULT 0 AFTER `Flags`;
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,119 @@
|
||||
--
|
||||
-- Table structure for table `challenge_mode_item_bonus_override`
|
||||
--
|
||||
DROP TABLE IF EXISTS `challenge_mode_item_bonus_override`;
|
||||
CREATE TABLE `challenge_mode_item_bonus_override` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ItemBonusTreeGroupID` int(11) NOT NULL DEFAULT '0',
|
||||
`DstItemBonusTreeID` int(11) NOT NULL DEFAULT '0',
|
||||
`Type` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`Value` int(11) NOT NULL DEFAULT '0',
|
||||
`MythicPlusSeasonID` int(11) NOT NULL DEFAULT '0',
|
||||
`PvPSeasonID` int(11) NOT NULL DEFAULT '0',
|
||||
`SrcItemBonusTreeID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `conditional_content_tuning`
|
||||
--
|
||||
DROP TABLE IF EXISTS `conditional_content_tuning`;
|
||||
CREATE TABLE `conditional_content_tuning` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`OrderIndex` int(11) NOT NULL DEFAULT '0',
|
||||
`RedirectContentTuningID` int(11) NOT NULL DEFAULT '0',
|
||||
`RedirectFlag` int(11) NOT NULL DEFAULT '0',
|
||||
`ParentContentTuningID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `content_tuning_x_label`
|
||||
--
|
||||
DROP TABLE IF EXISTS `content_tuning_x_label`;
|
||||
CREATE TABLE `content_tuning_x_label` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`LabelID` int(11) NOT NULL DEFAULT '0',
|
||||
`ContentTuningID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `item_bonus_list_group_entry`
|
||||
--
|
||||
DROP TABLE IF EXISTS `item_bonus_list_group_entry`;
|
||||
CREATE TABLE `item_bonus_list_group_entry` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ItemBonusListGroupID` int(11) NOT NULL DEFAULT '0',
|
||||
`ItemBonusListID` int(11) NOT NULL DEFAULT '0',
|
||||
`ItemLevelSelectorID` int(11) NOT NULL DEFAULT '0',
|
||||
`SequenceValue` int(11) NOT NULL DEFAULT '0',
|
||||
`ItemExtendedCostID` int(11) NOT NULL DEFAULT '0',
|
||||
`PlayerConditionID` int(11) NOT NULL DEFAULT '0',
|
||||
`Flags` int(11) NOT NULL DEFAULT '0',
|
||||
`ItemLogicalCostGroupID` 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;
|
||||
|
||||
--
|
||||
-- Table structure for table `item_bonus_tree`
|
||||
--
|
||||
DROP TABLE IF EXISTS `item_bonus_tree`;
|
||||
CREATE TABLE `item_bonus_tree` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Flags` int(11) NOT NULL DEFAULT '0',
|
||||
`InventoryTypeSlotMask` 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 `item_bonus_tree_node` CHANGE `Unknown1010_1` `MinMythicPlusLevel` int(11) NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `item_bonus_tree_node` CHANGE `Unknown1010_2` `MaxMythicPlusLevel` int(11) NOT NULL DEFAULT '0';
|
||||
|
||||
--
|
||||
-- Table structure for table `item_context_picker_entry`
|
||||
--
|
||||
DROP TABLE IF EXISTS `item_context_picker_entry`;
|
||||
CREATE TABLE `item_context_picker_entry` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ItemCreationContext` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`PVal` int(11) NOT NULL DEFAULT '0',
|
||||
`LabelID` int(11) NOT NULL DEFAULT '0',
|
||||
`Flags` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ItemContextPickerID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `mythic_plus_season`
|
||||
--
|
||||
DROP TABLE IF EXISTS `mythic_plus_season`;
|
||||
CREATE TABLE `mythic_plus_season` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`MilestoneSeason` int(11) NOT NULL DEFAULT '0',
|
||||
`ExpansionLevel` int(11) NOT NULL DEFAULT '0',
|
||||
`HeroicLFGDungeonMinGear` 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;
|
||||
|
||||
--
|
||||
-- Table structure for table `pvp_season`
|
||||
--
|
||||
DROP TABLE IF EXISTS `pvp_season`;
|
||||
CREATE TABLE `pvp_season` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`MilestoneSeason` int(11) NOT NULL DEFAULT '0',
|
||||
`AllianceAchievementID` int(11) NOT NULL DEFAULT '0',
|
||||
`HordeAchievementID` 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;
|
||||
|
||||
@@ -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`;
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user