aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorAlcDenat <alcdenat@hotmail.com>2017-03-21 17:45:07 +0100
committerShauren <shauren.trinity@gmail.com>2017-03-21 17:45:07 +0100
commit024ae15681736db1adea3ac82f666d725d931e6c (patch)
treeedc67f589f7249b104381fd23d38e1a9e09713be /sql
parent76dd3ae36849bc44cb77cad497575be446172d53 (diff)
Core/Quests: Implement quest_request_items_locale
Closes #19331
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`)
+);