[4313] Set svn:eol-style for SQL files.
[mangos-git.git] / sql / updates / 3138_disenchaning_loot_template.sql
blob2145e913a32e427916d0cb9cf0fa486ee98a22af
1 DROP TABLE IF EXISTS `disenchant_loot_template`;
2 CREATE TABLE `disenchant_loot_template` (
3   `entry` int(11) unsigned NOT NULL default '0',
4   `item` int(11) unsigned NOT NULL default '0',
5   `ChanceOrRef` float NOT NULL default '100',
6   `QuestChanceOrGroup` tinyint(3) NOT NULL default '0',
7   `mincount` tinyint(3) unsigned NOT NULL default '1',
8   `maxcount` tinyint(3) unsigned NOT NULL default '1',
9   `quest_freeforall` tinyint(3) unsigned NOT NULL default '1',
10   PRIMARY KEY  (`entry`,`item`)
11 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';