aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2017_03_21_01_world.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/master/2017_03_21_01_world.sql b/sql/updates/world/master/2017_03_21_01_world.sql
new file mode 100644
index 00000000000..4128164a127
--- /dev/null
+++ b/sql/updates/world/master/2017_03_21_01_world.sql
@@ -0,0 +1,8 @@
+DROP TABLE IF EXISTS `quest_request_items_locale`;
+CREATE TABLE `quest_request_items_locale` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) NOT NULL,
+ `CompletionText` text,
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`locale`)
+);