From c5c030ccc0035a6e5ae6b2d8df84a40f8e210a87 Mon Sep 17 00:00:00 2001 From: AlcDenat Date: Sat, 18 Mar 2017 12:47:46 +0100 Subject: Core/Quests: Reimplemented quest offer reward locales Closes #19242 --- sql/updates/world/master/2017_03_18_02_world.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 sql/updates/world/master/2017_03_18_02_world.sql (limited to 'sql') 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`) +) -- cgit v1.2.3