diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2012-12-04 09:40:35 +0100 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2012-12-04 09:40:35 +0100 |
commit | d1b09205a20b37971b3dea5e809fce1aa31242f5 (patch) | |
tree | 1ed6a30f0766e7d997da5cc0a245646f6e00f01a /sql | |
parent | 5a7c4f43b6495ec695baa31d601b733a8b43ae24 (diff) |
SQL: Update characters_database.sql
Diffstat (limited to 'sql')
-rw-r--r-- | sql/base/characters_database.sql | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index 02efbe77101..d8cdd409bf7 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -935,6 +935,30 @@ LOCK TABLES `character_queststatus_seasonal` WRITE; 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` -- |