aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/90_world.sql
blob: 529de4f712ec2f53d05ad7a6a29c4b2081364b6e (plain)
1
2
3
4
5
6
7
8
DROP TABLE IF EXISTS `spell_disabled`;
CREATE TABLE `spell_disabled` (
  `entry` int(11) unsigned NOT NULL default '0' COMMENT 'Spell entry',
  `disable_mask` int(8) unsigned NOT NULL default '0',
  `comment` varchar(64) NOT NULL default '',
  PRIMARY KEY  (`entry`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Disabled Spell System';