server/sql/updates/0.8/4243_spell_affect.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

19 lines
777 B
SQL

/*
DROP TABLE IF EXISTS `spell_affect`;
CREATE TABLE `spell_affect` (
`entry` smallint(5) unsigned NOT NULL default '0',
`effectId` tinyint(3) unsigned NOT NULL default '0',
`SpellId` smallint(5) unsigned NOT NULL default '0',
`SchoolMask` tinyint(3) unsigned NOT NULL default '0',
`Category` smallint(5) unsigned NOT NULL default '0',
`SkillID` smallint(5) unsigned NOT NULL default '0',
`SpellFamily` tinyint(3) unsigned NOT NULL default '0',
`SpellFamilyMask` bigint(20) unsigned NOT NULL default '0',
`Charges` smallint(5) unsigned NOT NULL default '0',
PRIMARY KEY (`entry`,`effectId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
*/
DELETE FROM `spell_affect` WHERE `entry` IN (34936);
INSERT INTO `spell_affect` VALUES
(34936,0,0,0,0,0,0,274877906945,1);