aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2024-12-02 15:29:02 +0100
committerShauren <shauren.trinity@gmail.com>2024-12-02 15:29:02 +0100
commit1fb4acc25ae89360e71d33a8f7cba99bcc028b32 (patch)
tree6a12714df0e1bd8a96b1f5452fbc4efcb83f7200 /sql
parent49699bc966e4543044da7f1fd75d57fbebfac4e4 (diff)
Core/Quests: Implemented QUEST_OBJECTIVE_KILL_WITH_LABEL
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/master/2024_12_02_00_hotfixes.sql23
1 files changed, 23 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2024_12_02_00_hotfixes.sql b/sql/updates/hotfixes/master/2024_12_02_00_hotfixes.sql
new file mode 100644
index 00000000000..a3946e51902
--- /dev/null
+++ b/sql/updates/hotfixes/master/2024_12_02_00_hotfixes.sql
@@ -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;