aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorAlcDenat <alcdenat@hotmail.com>2017-03-18 12:47:46 +0100
committerShauren <shauren.trinity@gmail.com>2017-03-18 12:47:46 +0100
commitc5c030ccc0035a6e5ae6b2d8df84a40f8e210a87 (patch)
treec7787add865ef6eda975dbbe84c1ab949125cb3b /sql
parent5a36a2eb17aeec937b4375f341239fdb9dce5fda (diff)
Core/Quests: Reimplemented quest offer reward locales
Closes #19242
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2017_03_18_02_world.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/master/2017_03_18_02_world.sql b/sql/updates/world/master/2017_03_18_02_world.sql
new file mode 100644
index 00000000000..0a36bbcd193
--- /dev/null
+++ b/sql/updates/world/master/2017_03_18_02_world.sql
@@ -0,0 +1,8 @@
+DROP TABLE IF EXISTS `quest_offer_reward_locale`;
+CREATE TABLE `quest_offer_reward_locale` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) NOT NULL,
+ `RewardText` text,
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`locale`)
+)