aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
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;