diff options
author | Shauren <shauren.trinity@gmail.com> | 2016-11-13 10:22:39 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2016-11-13 10:22:39 +0100 |
commit | dedf702248c4eb9a6e9d0e3203cab19b56fa4f3f (patch) | |
tree | ffde9b0a081c49e0041bb30459eda6be31623ea0 | |
parent | c5690849410b755825f50e6a074db893d38915c0 (diff) |
SQL: Fix base/characters_database.sql
-rw-r--r-- | sql/base/characters_database.sql | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index b6c209edd06..8a78a9bdd36 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -2535,6 +2535,31 @@ INSERT INTO `instance_reset` VALUES (33,2,1426996800),(36,2,1426996800),(249,3,1 UNLOCK TABLES; -- +-- Table structure for table `instance_scenario_progress` +-- + +DROP TABLE IF EXISTS `instance_scenario_progress`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `instance_scenario_progress` ( + `id` int(10) unsigned NOT NULL, + `criteria` int(10) unsigned NOT NULL, + `counter` bigint(20) unsigned NOT NULL, + `date` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`,`criteria`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `instance_scenario_progress` +-- + +LOCK TABLES `instance_scenario_progress` WRITE; +/*!40000 ALTER TABLE `instance_scenario_progress` DISABLE KEYS */; +/*!40000 ALTER TABLE `instance_scenario_progress` ENABLE KEYS */; +UNLOCK TABLES; + +-- -- Table structure for table `item_instance` -- |