diff options
| author | Shauren <shauren.trinity@gmail.com> | 2022-02-25 11:40:20 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-02-25 11:40:20 +0100 |
| commit | 7fbdd6473e5c67d002029d3c3675977e6b037e88 (patch) | |
| tree | 105ccc4328bce3c287cd78fdeb38129d1179af74 /sql | |
| parent | 9f30afe3528441571f89cb2e1775c756774fa0cd (diff) | |
Core/DataStores: Updated db2 structures to 9.2.0
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/master/2022_02_25_00_hotfixes.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2022_02_25_00_hotfixes.sql b/sql/updates/hotfixes/master/2022_02_25_00_hotfixes.sql new file mode 100644 index 00000000000..2fb250be70b --- /dev/null +++ b/sql/updates/hotfixes/master/2022_02_25_00_hotfixes.sql @@ -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`; |
