1 DROP TABLE IF EXISTS `skill_extra_item_template`;
2 CREATE TABLE `skill_extra_item_template` (
3 `spellId` int(11) unsigned NOT NULL default '0' COMMENT 'SpellId of the item creation spell',
4 `requiredSpecialization` int(11) unsigned NOT NULL default '0' COMMENT 'Specialization spell id',
5 `additionalCreateChance` float NOT NULL default '0' COMMENT 'chance to create add',
6 `additionalMaxNum` int(11) unsigned NOT NULL default '0' COMMENT 'max num of adds',
8 PRIMARY KEY (`spellId`)
9 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Specialization System';