DB Updates
This commit is contained in:
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,3 +1,3 @@
|
||||
-- TDB 915.22011 hotfixes
|
||||
-- TDB 915.22012 hotfixes
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/hotfixes', 'ARCHIVED');
|
||||
@@ -0,0 +1,16 @@
|
||||
--
|
||||
-- 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
@@ -0,0 +1,13 @@
|
||||
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`;
|
||||
Reference in New Issue
Block a user