server/sql/updates/0.9/4674_mangos_skill_discovery_template.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

8 lines
450 B
SQL

DROP TABLE IF EXISTS `skill_discovery_template`;
CREATE TABLE `skill_discovery_template` (
`spellId` int(11) unsigned NOT NULL default '0' COMMENT 'SpellId of the discoverable spell',
`reqSpell` int(11) unsigned NOT NULL default '0' COMMENT 'spell requirement',
`chance` float NOT NULL default '0' COMMENT 'chance to discover',
PRIMARY KEY (`spellId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Discovery System';