Sync DB with TC

Port From (https://github.com/TrinityCore/TrinityCore)
This commit is contained in:
hondacrx
2022-06-01 19:38:23 -04:00
parent 64c70a1761
commit 0af9f22d70
1156 changed files with 579649 additions and 92 deletions
@@ -1,16 +0,0 @@
--
-- Table structure for table `gameobject_art_kit`
--
DROP TABLE IF EXISTS `gameobject_art_kit`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `gameobject_art_kit` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`AttachModelFileID` int(11) NOT NULL DEFAULT '0',
`TextureVariationFileID1` int(11) NOT NULL DEFAULT '0',
`TextureVariationFileID2` int(11) NOT NULL DEFAULT '0',
`TextureVariationFileID3` 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;
/*!40101 SET character_set_client = @saved_cs_client */;
File diff suppressed because one or more lines are too long
@@ -1,13 +0,0 @@
ALTER TABLE `broadcast_text` ADD `VoiceOverPriorityID` int DEFAULT 0 NOT NULL AFTER `ChatBubbleDurationMs`;
ALTER TABLE `item_sparse` MODIFY `StartQuestID` int DEFAULT 0 NOT NULL;
ALTER TABLE `item_sparse` MODIFY `LanguageID` int DEFAULT 0 NOT NULL;
ALTER TABLE `languages` ADD `Flags` int DEFAULT 0 NOT NULL AFTER Name;
ALTER TABLE `languages` ADD `UiTextureKitID` int DEFAULT 0 NOT NULL AFTER `Flags`;
ALTER TABLE `languages` ADD `UiTextureKitElementCount` int DEFAULT 0 NOT NULL AFTER `UiTextureKitID`;
ALTER TABLE `taxi_nodes` MODIFY `Flags` smallint unsigned DEFAULT 0 NOT NULL;
-- purge blob hotfixes
DELETE hd, hb FROM `hotfix_data` hd INNER JOIN `hotfix_blob` hb ON hd.`TableHash` = hb.`TableHash` AND hd.`RecordId` = hb.`RecordId`;
@@ -1,3 +1,3 @@
-- TDB 915.22012 hotfixes
-- TDB 920.22031 hotfixes
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/hotfixes', 'ARCHIVED');