aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/hotfixes/master
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2024-11-19 21:40:49 +0100
committerShauren <shauren.trinity@gmail.com>2024-11-19 21:40:49 +0100
commit6dd5fb9d88e7a8b7da696bbe7b96947217b1ace2 (patch)
tree69930d805b8de5a6314cd0d24bfd05914bc37ab2 /sql/updates/hotfixes/master
parent6d78230d6b45d370b9cf3656c84dd59963179bae (diff)
Core/Auras: Implemented mount equipment
Diffstat (limited to 'sql/updates/hotfixes/master')
-rw-r--r--sql/updates/hotfixes/master/2024_11_19_00_hotfixes.sql13
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2024_11_19_00_hotfixes.sql b/sql/updates/hotfixes/master/2024_11_19_00_hotfixes.sql
new file mode 100644
index 00000000000..678c526c8e2
--- /dev/null
+++ b/sql/updates/hotfixes/master/2024_11_19_00_hotfixes.sql
@@ -0,0 +1,13 @@
+--
+-- Table structure for table `mount_equipment`
+--
+DROP TABLE IF EXISTS `mount_equipment`;
+CREATE TABLE `mount_equipment` (
+ `ID` int unsigned NOT NULL DEFAULT '0',
+ `Item` int NOT NULL DEFAULT '0',
+ `BuffSpell` int NOT NULL DEFAULT '0',
+ `Unknown820` int NOT NULL DEFAULT '0',
+ `LearnedBySpell` 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;