[7338] Little cleanup in battleground queues code.
[getmangos.git] / sql / updates / 0.10 / 5097_mangos_skill_extra_item_template.sql
blobef417ff60babfc0d6877cf39aafb930c5b3d8b34
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';