mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 15:40:45 +01:00
DB/Misc: add character_currency to full db.
This commit is contained in:
@@ -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`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user