diff options
| author | Смердокрыл <smerdokryl@gmail.com> | 2023-02-10 12:29:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-10 11:29:43 +0100 |
| commit | b37333c1d935abe05c854c41bdf7ac6aff7f2882 (patch) | |
| tree | db9341b3df71b1585c34f555c18650517b8957fd /sql | |
| parent | 132ec70dd28815ef32ca091b5f6f1005859d4db9 (diff) | |
Core/Auras: Implemented SPELL_AURA_KEYBOUND_OVERRIDE (#28809)
Co-authored-by: MaxtorCoder <warsongkiller.s8@gmail.com>
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/master/2023_02_09_00_hotfixes.sql | 13 |
1 files changed, 13 insertions, 0 deletions
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; |
