Misc fixes

This commit is contained in:
hondacrx
2019-09-03 23:57:34 -04:00
parent 4128cc8516
commit 7066a959f1
6 changed files with 1160 additions and 58 deletions
@@ -0,0 +1,10 @@
--
-- Table structure for table `world_state_expression`
--
DROP TABLE IF EXISTS `world_state_expression`;
CREATE TABLE `world_state_expression` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`Expression` text,
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
@@ -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;