aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorRoger Stebler <roger.stebler@students.unibe.ch>2017-08-20 17:24:41 +0200
committerShauren <shauren.trinity@gmail.com>2017-08-20 17:24:41 +0200
commit4bc9ed0fdeee0822fb2142c94c8360c1af777f6b (patch)
tree741d5dcb24ed8adbb2631ae8ff61890357f54eed /sql/updates
parent1de03622c5ee61298a7e3da42b22626b8f89f2d4 (diff)
Core/Quests: Implemented criteria tree quest objective type
Closes #20161
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/characters/master/2017_08_20_00_characters.sql21
1 files changed, 21 insertions, 0 deletions
diff --git a/sql/updates/characters/master/2017_08_20_00_characters.sql b/sql/updates/characters/master/2017_08_20_00_characters.sql
new file mode 100644
index 00000000000..f4d354081bf
--- /dev/null
+++ b/sql/updates/characters/master/2017_08_20_00_characters.sql
@@ -0,0 +1,21 @@
+--
+-- Table structure for table `character_queststatus_objectives_criteria`
+--
+DROP TABLE IF EXISTS `character_queststatus_objectives_criteria`;
+CREATE TABLE `character_queststatus_objectives_criteria` (
+ `guid` bigint(20) unsigned NOT NULL,
+ `questObjectiveId` int(10) unsigned NOT NULL,
+ PRIMARY KEY (`guid`,`questObjectiveId`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `character_queststatus_objectives_criteria_progress`
+--
+DROP TABLE IF EXISTS `character_queststatus_objectives_criteria_progress`;
+CREATE TABLE `character_queststatus_objectives_criteria_progress` (
+ `guid` bigint(20) unsigned NOT NULL,
+ `criteriaId` int(10) unsigned NOT NULL,
+ `counter` bigint(20) unsigned NOT NULL,
+ `date` int(10) unsigned NOT NULL DEFAULT '0',
+ PRIMARY KEY (`guid`,`criteriaId`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;