DB/Misc: add character_currency to full db.

This commit is contained in:
cyberbrest
2012-09-03 23:19:18 +03:00
parent 41c5bb3e50
commit ac3de951fc

View File

@@ -507,6 +507,31 @@ LOCK TABLES `character_battleground_random` WRITE;
/*!40000 ALTER TABLE `character_battleground_random` ENABLE KEYS */;
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`
--