Core/Auras: Implemented SPELL_AURA_KEYBOUND_OVERRIDE (#28809)

Co-authored-by: MaxtorCoder <[email protected]>
Co-authored-by: Shauren <[email protected]>
This commit is contained in:
Смердокрыл
2023-02-10 11:29:43 +01:00
committed by GitHub
co-authored by MaxtorCoder Shauren
parent 132ec70dd2
commit b37333c1d9
14 changed files with 84 additions and 7 deletions
@@ -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;