diff options
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; |