TDB 1007.23041 - 2023/04/02
Port From (https://github.com/TrinityCore/TrinityCore/commit/1b588502e3afddb2312514d4ac9d87a9640e7dfd)
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
-- TDB 1005.23021 hotfixes
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/10.x/hotfixes', 'ARCHIVED');
|
||||
@@ -0,0 +1,13 @@
|
||||
--
|
||||
-- Table structure for table `spell_keybound_override`
|
||||
--
|
||||
DROP TABLE IF EXISTS `spell_keybound_override`;
|
||||
CREATE TABLE `spell_keybound_override` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Function` text,
|
||||
`Type` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`Data` int(11) NOT NULL DEFAULT '0',
|
||||
`Flags` 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,22 @@
|
||||
ALTER TABLE `area_trigger` MODIFY `AreaTriggerActionSetID` int NOT NULL DEFAULT 0 AFTER `ShapeID`;
|
||||
|
||||
ALTER TABLE `currency_container` MODIFY `ContainerQuality` tinyint NOT NULL DEFAULT 0 AFTER `ContainerIconID`;
|
||||
|
||||
ALTER TABLE `difficulty` MODIFY `GroupSizeHealthCurveID` int unsigned NOT NULL DEFAULT 0 AFTER `ToggleDifficultyID`;
|
||||
ALTER TABLE `difficulty` MODIFY `GroupSizeDmgCurveID` int unsigned NOT NULL DEFAULT 0 AFTER `GroupSizeHealthCurveID`;
|
||||
ALTER TABLE `difficulty` MODIFY `GroupSizeSpellPointsCurveID` int unsigned NOT NULL DEFAULT 0 AFTER `GroupSizeDmgCurveID`;
|
||||
|
||||
ALTER TABLE `garr_building` MODIFY `GarrTypeID` tinyint NOT NULL DEFAULT 0 AFTER `Tooltip`;
|
||||
|
||||
ALTER TABLE `garr_follower` MODIFY `GarrTypeID` tinyint NOT NULL DEFAULT 0 AFTER `TitleName`;
|
||||
|
||||
ALTER TABLE `garr_mission` MODIFY `GarrTypeID` tinyint NOT NULL DEFAULT 0 AFTER `WorldPosY`;
|
||||
|
||||
ALTER TABLE `garr_talent_tree` MODIFY `GarrTypeID` tinyint NOT NULL DEFAULT 0 AFTER `Name`;
|
||||
|
||||
ALTER TABLE `languages` MODIFY `ID` int unsigned NOT NULL DEFAULT 0 AFTER `Name`;
|
||||
ALTER TABLE `languages` ADD `LearningCurveID` int NOT NULL DEFAULT 0 AFTER `UiTextureKitElementCount`;
|
||||
|
||||
ALTER TABLE `quest_info` MODIFY `Profession` smallint unsigned NOT NULL DEFAULT 0 AFTER `Modifiers`;
|
||||
|
||||
ALTER TABLE `trait_node_x_trait_cost` MODIFY `TraitNodeID` int NOT NULL DEFAULT 0 AFTER `ID`;
|
||||
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