mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-17 08:00:48 +01:00
Change field crc in characters.addons to int(32) to support proper values.
--HG-- branch : trunk
This commit is contained in:
@@ -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 */;
|
||||
|
||||
Reference in New Issue
Block a user