TDB 927.22111 - 2022/11/20

Port From (https://github.com/TrinityCore/TrinityCore/commit/85205d8ca5d41e4eca09619ebf46d92e7b925aaa)
This commit is contained in:
hondacrx
2022-12-17 17:09:35 -05:00
parent 3b179a018e
commit a4ebb8455d
389 changed files with 86931 additions and 55 deletions
@@ -0,0 +1,3 @@
-- TDB 927.22082 hotfixes
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/hotfixes', 'ARCHIVED');
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,44 @@
--
-- Table structure for table `garr_talent_tree`
--
DROP TABLE IF EXISTS `garr_talent_tree`;
CREATE TABLE `garr_talent_tree` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`Name` text,
`GarrTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0',
`ClassID` int(11) NOT NULL DEFAULT '0',
`MaxTiers` tinyint(4) NOT NULL DEFAULT '0',
`UiOrder` tinyint(4) NOT NULL DEFAULT '0',
`Flags` int(11) NOT NULL DEFAULT '0',
`UiTextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0',
`GarrTalentTreeType` int(11) NOT NULL DEFAULT '0',
`PlayerConditionID` int(11) NOT NULL DEFAULT '0',
`FeatureTypeIndex` tinyint(4) NOT NULL DEFAULT '0',
`FeatureSubtypeIndex` tinyint(4) NOT NULL DEFAULT '0',
`CurrencyID` 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 `garr_talent_tree_locale`
--
DROP TABLE IF EXISTS `garr_talent_tree_locale`;
CREATE TABLE `garr_talent_tree_locale` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`locale` varchar(4) NOT NULL,
`Name_lang` text,
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
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);