diff options
author | Lopfest <lopfest@gmail.com> | 2019-09-01 15:51:01 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2019-09-01 15:51:01 +0200 |
commit | 7d999b70a1640b5dbe3042f59463814f13cdc834 (patch) | |
tree | 1ec6a7cd71e56a44bc1e421b716ef9f9311d39ee /sql | |
parent | fa0dc88c23a9d9dc95dd9e444e8f240d91ca241a (diff) |
Core/SmartScripts: implement SMART_ACTION_PLAY_SPELL_VISUAL_KIT (#23737)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/hotfixes/master/2019_09_01_00_hotfixes.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2019_09_01_00_hotfixes.sql b/sql/updates/hotfixes/master/2019_09_01_00_hotfixes.sql new file mode 100644 index 00000000000..ff8dd82c007 --- /dev/null +++ b/sql/updates/hotfixes/master/2019_09_01_00_hotfixes.sql @@ -0,0 +1,14 @@ +-- +-- Table structure for table `spell_visual_kit` +-- +DROP TABLE IF EXISTS `spell_visual_kit`; +CREATE TABLE `spell_visual_kit` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `FallbackPriority` tinyint(3) NOT NULL DEFAULT '0', + `FallbackSpellVisualKitId` int(11) unsigned NOT NULL DEFAULT '0', + `DelayMin` smallint(5) unsigned NOT NULL DEFAULT '0', + `DelayMax` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; |