server/sql/updates/0.7/4023_spell_proc_event.sql
freghar 95840fd2c3 Removed trailing whitespaces and CRLFs
With /contrib/ and /dep/ excluded.

Signed-off-by: freghar <compmancz@gmail.com>
2008-10-22 11:52:03 +02:00

11 lines
388 B
SQL

ALTER TABLE `spell_proc_event`
CHANGE COLUMN `procFlags` `procFlags` int(11) unsigned NOT NULL default '0';
/* on attack miss,dodge,parry and block */
UPDATE `spell_proc_event`
SET `procFlags` = 3288334336 WHERE `entry` = 26107;
/* on attack dodge,parry */
DELETE FROM `spell_proc_event` WHERE `entry` IN ( 37519 );
INSERT INTO `spell_proc_event` VALUES
(37519,0,0,0,0,67108864,0);