diff options
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/hotfixes/master/2024_12_02_00_hotfixes.sql | 23 |
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; |