diff options
author | ShinDarth <borzifrancesco@gmail.com> | 2014-10-18 13:05:47 +0200 |
---|---|---|
committer | ShinDarth <borzifrancesco@gmail.com> | 2014-10-18 18:37:39 +0200 |
commit | e806fc8a02dbde324dd9654b0165a7cac5ae7086 (patch) | |
tree | 1eda6d5ec3adc207cbbdac6860ec20d63d7b5cb1 /sql/base | |
parent | 2523b476190438e446f76c522efbdce329dd08bf (diff) |
Core/Quest: implement Quest Tracker
Diffstat (limited to 'sql/base')
-rw-r--r-- | sql/base/characters_database.sql | 34 |
1 files changed, 31 insertions, 3 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index f3e013529fc..096cd0424e1 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -1,8 +1,8 @@ --- MySQL dump 10.13 Distrib 5.6.9-rc, for Win64 (x86_64) +-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64) -- -- Host: localhost Database: characters -- ------------------------------------------------------ --- Server version 5.6.9-rc +-- Server version 5.5.40-0ubuntu0.14.04.1 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; @@ -2439,6 +2439,34 @@ LOCK TABLES `pvpstats_players` WRITE; UNLOCK TABLES; -- +-- Table structure for table `quest_tracker` +-- + +DROP TABLE IF EXISTS `quest_tracker`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `quest_tracker` ( + `id` mediumint(8) unsigned NOT NULL DEFAULT '0', + `character_guid` int(10) unsigned NOT NULL DEFAULT '0', + `quest_accept_time` datetime NOT NULL, + `quest_complete_time` datetime DEFAULT NULL, + `quest_abandon_time` datetime DEFAULT NULL, + `completed_by_gm` tinyint(1) NOT NULL DEFAULT '0', + `core_hash` varchar(120) NOT NULL DEFAULT '0', + `core_revision` varchar(120) NOT NULL DEFAULT '0' +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quest_tracker` +-- + +LOCK TABLES `quest_tracker` WRITE; +/*!40000 ALTER TABLE `quest_tracker` DISABLE KEYS */; +/*!40000 ALTER TABLE `quest_tracker` ENABLE KEYS */; +UNLOCK TABLES; + +-- -- Table structure for table `reserved_name` -- @@ -2517,4 +2545,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2014-08-28 15:30:47 +-- Dump completed on 2014-10-18 18:02:06 |