mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-17 16:10:49 +01:00
SQL: Update characters_database.sql
This commit is contained in:
@@ -934,6 +934,30 @@ LOCK TABLES `character_queststatus_seasonal` WRITE;
|
||||
/*!40000 ALTER TABLE `character_queststatus_seasonal` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_queststatus_monthly`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `character_queststatus_monthly`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `character_queststatus_monthly` (
|
||||
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`quest` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
||||
PRIMARY KEY (`guid`,`quest`),
|
||||
KEY `idx_guid` (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `character_queststatus_monthly`
|
||||
--
|
||||
|
||||
LOCK TABLES `character_queststatus_monthly` WRITE;
|
||||
/*!40000 ALTER TABLE `character_queststatus_monthly` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_queststatus_monthly` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_queststatus_weekly`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user