· 8 years ago · Nov 27, 2017, 02:56 PM
1DROP TABLE IF EXISTS `spell_proc_event`;
2CREATE TABLE `spell_proc_event` (
3 `entry` int(10) NOT NULL DEFAULT '0',
4 `SchoolMask` bigint(20) NOT NULL DEFAULT '0',
5 `SpellFamilyName` smallint(5) unsigned NOT NULL DEFAULT '0',
6 `SpellFamilyMask0` bigint(20) DEFAULT NULL,
7 `SpellFamilyMask1` bigint(20) DEFAULT NULL,
8 `SpellFamilyMask2` int(10) DEFAULT NULL,
9 `procFlags` int(10) unsigned NOT NULL DEFAULT '0',
10 `procEx` int(10) unsigned NOT NULL DEFAULT '0',
11 `ppmRate` float NOT NULL DEFAULT '0',
12 `CustomChance` float NOT NULL DEFAULT '0',
13 `Cooldown` int(10) unsigned NOT NULL DEFAULT '0',
14 PRIMARY KEY (`entry`)
15) ENGINE=MyISAM DEFAULT CHARSET=utf8;