diff options
| author | Nay <dnpd.dd@gmail.com> | 2012-09-04 01:23:41 +0100 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2012-09-04 01:23:41 +0100 |
| commit | 3b02ea37ee895f6afe81b00dc79d31375375b871 (patch) | |
| tree | 7c79d321663d9455b9949c4cc6708023ea2cfa47 /sql/base | |
| parent | 2a13eb3d0e41e2410266517ad135f3e3f661f950 (diff) | |
Corrections to 'Merge pull request #7635'
Diffstat (limited to 'sql/base')
| -rw-r--r-- | sql/base/characters_database.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index 89294f5b92b..6656fe7d48c 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -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 */; |
