mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
7 lines
365 B
SQL
7 lines
365 B
SQL
DROP TABLE IF EXISTS `item_enchantment_template`;
|
|
CREATE TABLE `item_enchantment_template` (
|
|
`entry` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`ench` int(10) unsigned NOT NULL DEFAULT '0',
|
|
`chance` float unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`entry`,`ench`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item Random Enchantment System';
|