mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Quests: Implemented QUEST_OBJECTIVE_KILL_WITH_LABEL
This commit is contained in:
23
sql/updates/hotfixes/master/2024_12_02_00_hotfixes.sql
Normal file
23
sql/updates/hotfixes/master/2024_12_02_00_hotfixes.sql
Normal file
@@ -0,0 +1,23 @@
|
||||
--
|
||||
-- Table structure for table `creature_label`
|
||||
--
|
||||
DROP TABLE IF EXISTS `creature_label`;
|
||||
CREATE TABLE `creature_label` (
|
||||
`ID` int unsigned NOT NULL DEFAULT '0',
|
||||
`LabelID` int NOT NULL DEFAULT '0',
|
||||
`CreatureDifficultyID` int unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `gameobject_label`
|
||||
--
|
||||
DROP TABLE IF EXISTS `gameobject_label`;
|
||||
CREATE TABLE `gameobject_label` (
|
||||
`ID` int unsigned NOT NULL DEFAULT '0',
|
||||
`LabelID` int NOT NULL DEFAULT '0',
|
||||
`GameObjectID` int unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
Reference in New Issue
Block a user