Corrections to 'Merge pull request #7635'

This commit is contained in:
Nay
2012-09-04 01:23:41 +01:00
parent 2a13eb3d0e
commit 3b02ea37ee
7 changed files with 16 additions and 16 deletions

View File

@@ -515,10 +515,10 @@ DROP TABLE IF EXISTS `character_currency`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_currency` (
`guid` int(11) unsigned NOT NULL,
`guid` int(10) unsigned NOT NULL,
`currency` smallint(5) unsigned NOT NULL,
`total_count` int(11) unsigned NOT NULL,
`week_count` int(11) unsigned NOT NULL,
`total_count` int(10) unsigned NOT NULL,
`week_count` int(10) unsigned NOT NULL,
PRIMARY KEY (`guid`,`currency`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;