diff options
author | cyberbrest <cyberbrest@cyberbrest.com> | 2012-09-03 23:19:18 +0300 |
---|---|---|
committer | cyberbrest <cyberbrest@cyberbrest.com> | 2012-09-03 23:19:18 +0300 |
commit | ac3de951fc84a87762795f91ae56cada45b105cd (patch) | |
tree | 8e7215f243ff3aca3a354dd58896f9e33748524e | |
parent | 41c5bb3e50582253d3e946d7aa020f3beac7691c (diff) |
DB/Misc: add character_currency to full db.
-rw-r--r-- | sql/base/characters_database.sql | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index d9a1089b05a..89294f5b92b 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -508,6 +508,31 @@ LOCK TABLES `character_battleground_random` WRITE; UNLOCK TABLES; -- +-- Table structure for table `character_currency` +-- + +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, + `currency` smallint(5) unsigned NOT NULL, + `total_count` int(11) unsigned NOT NULL, + `week_count` int(11) unsigned NOT NULL, + PRIMARY KEY (`guid`,`currency`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `character_currency` +-- + +LOCK TABLES `character_currency` WRITE; +/*!40000 ALTER TABLE `character_currency` DISABLE KEYS */; +/*!40000 ALTER TABLE `character_currency` ENABLE KEYS */; +UNLOCK TABLES; + +-- -- Table structure for table `character_declinedname` -- |