* Change AllowableClass and AllowableRace fields to SIGNED INT to allow for

* the larger values that are coming from WDB.
* Thanks to Malcrom

--HG--
branch : trunk
This commit is contained in:
Brian
2009-12-11 17:44:51 -07:00
parent 2547e5c109
commit cca31e558f

View File

@@ -1262,8 +1262,8 @@ CREATE TABLE `item_template` (
`BuyPrice` int(10) unsigned NOT NULL default '0',
`SellPrice` int(10) unsigned NOT NULL default '0',
`InventoryType` tinyint(3) unsigned NOT NULL default '0',
`AllowableClass` mediumint(9) NOT NULL default '-1',
`AllowableRace` mediumint(9) NOT NULL default '-1',
`AllowableClass` int signed NOT NULL default '-1',
`AllowableRace` int signed NOT NULL default '-1',
`ItemLevel` tinyint(3) unsigned NOT NULL default '0',
`RequiredLevel` tinyint(3) unsigned NOT NULL default '0',
`RequiredSkill` smallint(5) unsigned NOT NULL default '0',