mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 02:25:38 +01:00
Core/Packets: updated packet structures for 4.4.1
This commit is contained in:
14
sql/updates/world/cata_classic/2024_11_01_00_world.sql
Normal file
14
sql/updates/world/cata_classic/2024_11_01_00_world.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
ALTER TABLE `gossip_menu_addon` ADD `LfgDungeonsID` int NOT NULL DEFAULT '0' AFTER `FriendshipFactionID`;
|
||||
|
||||
DROP TABLE IF EXISTS `quest_treasure_pickers`;
|
||||
CREATE TABLE `quest_treasure_pickers` (
|
||||
`QuestID` int unsigned NOT NULL,
|
||||
`TreasurePickerID` int NOT NULL,
|
||||
`OrderIndex` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestID`,`TreasurePickerID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
INSERT INTO `quest_treasure_pickers` SELECT `ID`, `TreasurePickerID`, 0 FROM `quest_template` WHERE `TreasurePickerID` <> 0;
|
||||
|
||||
ALTER TABLE `quest_template`
|
||||
DROP `TreasurePickerID`;
|
||||
Reference in New Issue
Block a user