aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2018-04-24 23:59:37 +0200
committerShauren <shauren.trinity@gmail.com>2018-04-24 23:59:37 +0200
commitb172ba7b8a440faf068a6ea8c60fc2a1640689a6 (patch)
treea838680c6d7f3f7595a1352c35bdfdbfbd9d410a /sql
parentc05d887e8d554d51b7c0066e3acd8214eb3c3d4e (diff)
Core/Quests: Implemented quest greeting locales
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2018_04_24_01_world.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/master/2018_04_24_01_world.sql b/sql/updates/world/master/2018_04_24_01_world.sql
new file mode 100644
index 00000000000..ef3f38041d5
--- /dev/null
+++ b/sql/updates/world/master/2018_04_24_01_world.sql
@@ -0,0 +1,12 @@
+--
+-- Table structure for table `quest_greeting_locale`
+--
+DROP TABLE IF EXISTS `quest_greeting_locale`;
+CREATE TABLE `quest_greeting_locale` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) NOT NULL,
+ `Greeting` text,
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`type`,`locale`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;