Change field crc in characters.addons to int(32) to support proper values.

--HG--
branch : trunk
This commit is contained in:
Machiavelli
2010-03-15 13:24:45 +01:00
parent 8268adc932
commit ce51f24ff3
2 changed files with 2 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ DROP TABLE IF EXISTS `addons`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `addons` (
`name` varchar(120) NOT NULL default '',
`crc` mediumint(32) unsigned NOT NULL default '0',
`crc` int(32) unsigned NOT NULL default '0',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Addons';
/*!40101 SET character_set_client = @saved_cs_client */;