From b37333c1d935abe05c854c41bdf7ac6aff7f2882 Mon Sep 17 00:00:00 2001 From: Смердокрыл Date: Fri, 10 Feb 2023 12:29:43 +0200 Subject: Core/Auras: Implemented SPELL_AURA_KEYBOUND_OVERRIDE (#28809) Co-authored-by: MaxtorCoder Co-authored-by: Shauren --- sql/updates/hotfixes/master/2023_02_09_00_hotfixes.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sql/updates/hotfixes/master/2023_02_09_00_hotfixes.sql (limited to 'sql') diff --git a/sql/updates/hotfixes/master/2023_02_09_00_hotfixes.sql b/sql/updates/hotfixes/master/2023_02_09_00_hotfixes.sql new file mode 100644 index 00000000000..35bc9144003 --- /dev/null +++ b/sql/updates/hotfixes/master/2023_02_09_00_hotfixes.sql @@ -0,0 +1,13 @@ +-- +-- Table structure for table `spell_keybound_override` +-- +DROP TABLE IF EXISTS `spell_keybound_override`; +CREATE TABLE `spell_keybound_override` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Function` text, + `Type` tinyint(4) NOT NULL DEFAULT '0', + `Data` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- cgit v1.2.3