aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2012-03-01 22:26:05 +0100
committerShauren <shauren.trinity@gmail.com>2012-03-01 22:26:05 +0100
commit09f0a2c04fd5d01a4a2bbe1392750947b8911b5b (patch)
tree711e6109cf7bf0420ca2167ba0918bf3ae389530 /sql
parent91e7dc8561e48650488f6b85628b85abbef2fd09 (diff)
Core/CreatureTextMgr: Added support for creature_text localization
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/2012_03_01_02_world_locales_creature_text.sql15
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/2012_03_01_02_world_locales_creature_text.sql b/sql/updates/world/2012_03_01_02_world_locales_creature_text.sql
new file mode 100644
index 00000000000..c44ca191835
--- /dev/null
+++ b/sql/updates/world/2012_03_01_02_world_locales_creature_text.sql
@@ -0,0 +1,15 @@
+DROP TABLE IF EXISTS `locales_creature_text`;
+CREATE TABLE `locales_creature_text` (
+ `entry` int(10) UNSIGNED NOT NULL,
+ `textGroup` tinyint(3) UNSIGNED NOT NULL,
+ `id` int(10) UNSIGNED NOT NULL,
+ `text_loc1` text,
+ `text_loc2` text,
+ `text_loc3` text,
+ `text_loc4` text,
+ `text_loc5` text,
+ `text_loc6` text,
+ `text_loc7` text,
+ `text_loc8` text,
+ PRIMARY KEY (`entry`,`textGroup`,`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;