Removed trailing whitespaces and CRLFs
[getmangos.git] / sql / updates / 0.9 / 4674_mangos_skill_discovery_template.sql
blobe2eacb8634b5cee3a5145fbb1a4d1e39a40cabf3
1 DROP TABLE IF EXISTS `skill_discovery_template`;
2 CREATE TABLE `skill_discovery_template` (
3   `spellId` int(11) unsigned NOT NULL default '0' COMMENT 'SpellId of the discoverable spell',
4   `reqSpell` int(11) unsigned NOT NULL default '0' COMMENT 'spell requirement',
5   `chance` float NOT NULL default '0' COMMENT 'chance to discover',
7   PRIMARY KEY  (`spellId`)
8 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Discovery System';