server/sql/updates/0.9/4674_mangos_skill_discovery_template.sql

8 lines
No EOL
451 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';