1 | DROP TABLE IF EXISTS `locales_creature`; |
---|
2 | CREATE TABLE `locales_creature` ( |
---|
3 | `entry` int(11) unsigned NOT NULL default '0', |
---|
4 | `name_loc1` varchar(100) NOT NULL default '', |
---|
5 | `name_loc2` varchar(100) NOT NULL default '', |
---|
6 | `name_loc3` varchar(100) NOT NULL default '', |
---|
7 | `name_loc4` varchar(100) NOT NULL default '', |
---|
8 | `name_loc5` varchar(100) NOT NULL default '', |
---|
9 | `name_loc6` varchar(100) NOT NULL default '', |
---|
10 | `name_loc7` varchar(100) NOT NULL default '', |
---|
11 | `subname_loc1` varchar(100) default NULL, |
---|
12 | `subname_loc2` varchar(100) default NULL, |
---|
13 | `subname_loc3` varchar(100) default NULL, |
---|
14 | `subname_loc4` varchar(100) default NULL, |
---|
15 | `subname_loc5` varchar(100) default NULL, |
---|
16 | `subname_loc6` varchar(100) default NULL, |
---|
17 | `subname_loc7` varchar(100) default NULL, |
---|
18 | `subname_loc8` varchar(100) default NULL, |
---|
19 | PRIMARY KEY (`entry`) |
---|
20 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
---|
21 | |
---|
22 | DROP TABLE IF EXISTS `locales_gameobject`; |
---|
23 | CREATE TABLE `locales_gameobject` ( |
---|
24 | `entry` int(11) unsigned NOT NULL default '0', |
---|
25 | `name_loc1` varchar(100) NOT NULL default '', |
---|
26 | `name_loc2` varchar(100) NOT NULL default '', |
---|
27 | `name_loc3` varchar(100) NOT NULL default '', |
---|
28 | `name_loc4` varchar(100) NOT NULL default '', |
---|
29 | `name_loc5` varchar(100) NOT NULL default '', |
---|
30 | `name_loc6` varchar(100) NOT NULL default '', |
---|
31 | `name_loc7` varchar(100) NOT NULL default '', |
---|
32 | PRIMARY KEY (`entry`) |
---|
33 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
---|
34 | |
---|
35 | DROP TABLE IF EXISTS `locales_item`; |
---|
36 | CREATE TABLE `locales_item` ( |
---|
37 | `entry` int(11) unsigned NOT NULL default '0', |
---|
38 | `name_loc1` varchar(100) NOT NULL default '', |
---|
39 | `name_loc2` varchar(100) NOT NULL default '', |
---|
40 | `name_loc3` varchar(100) NOT NULL default '', |
---|
41 | `name_loc4` varchar(100) NOT NULL default '', |
---|
42 | `name_loc5` varchar(100) NOT NULL default '', |
---|
43 | `name_loc6` varchar(100) NOT NULL default '', |
---|
44 | `name_loc7` varchar(100) NOT NULL default '', |
---|
45 | `description_loc1` varchar(255) default NULL, |
---|
46 | `description_loc2` varchar(255) default NULL, |
---|
47 | `description_loc3` varchar(255) default NULL, |
---|
48 | `description_loc4` varchar(255) default NULL, |
---|
49 | `description_loc5` varchar(255) default NULL, |
---|
50 | `description_loc6` varchar(255) default NULL, |
---|
51 | `description_loc7` varchar(255) default NULL, |
---|
52 | PRIMARY KEY (`entry`) |
---|
53 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
---|
54 | |
---|
55 | DROP TABLE IF EXISTS `locales_quest`; |
---|
56 | CREATE TABLE `locales_quest` ( |
---|
57 | `entry` int(11) unsigned NOT NULL default '0', |
---|
58 | `Title_loc1` text, |
---|
59 | `Title_loc2` text, |
---|
60 | `Title_loc3` text, |
---|
61 | `Title_loc4` text, |
---|
62 | `Title_loc5` text, |
---|
63 | `Title_loc6` text, |
---|
64 | `Title_loc7` text, |
---|
65 | `Details_loc1` text, |
---|
66 | `Details_loc2` text, |
---|
67 | `Details_loc3` text, |
---|
68 | `Details_loc4` text, |
---|
69 | `Details_loc5` text, |
---|
70 | `Details_loc6` text, |
---|
71 | `Details_loc7` text, |
---|
72 | `Objectives_loc1` text, |
---|
73 | `Objectives_loc2` text, |
---|
74 | `Objectives_loc3` text, |
---|
75 | `Objectives_loc4` text, |
---|
76 | `Objectives_loc5` text, |
---|
77 | `Objectives_loc6` text, |
---|
78 | `Objectives_loc7` text, |
---|
79 | `OfferRewardText_loc1` text, |
---|
80 | `OfferRewardText_loc2` text, |
---|
81 | `OfferRewardText_loc3` text, |
---|
82 | `OfferRewardText_loc4` text, |
---|
83 | `OfferRewardText_loc5` text, |
---|
84 | `OfferRewardText_loc6` text, |
---|
85 | `OfferRewardText_loc7` text, |
---|
86 | `RequestItemsText_loc1` text, |
---|
87 | `RequestItemsText_loc2` text, |
---|
88 | `RequestItemsText_loc3` text, |
---|
89 | `RequestItemsText_loc4` text, |
---|
90 | `RequestItemsText_loc5` text, |
---|
91 | `RequestItemsText_loc6` text, |
---|
92 | `RequestItemsText_loc7` text, |
---|
93 | `EndText_loc1` text, |
---|
94 | `EndText_loc2` text, |
---|
95 | `EndText_loc3` text, |
---|
96 | `EndText_loc4` text, |
---|
97 | `EndText_loc5` text, |
---|
98 | `EndText_loc6` text, |
---|
99 | `EndText_loc7` text, |
---|
100 | `ObjectiveText1_loc1` text, |
---|
101 | `ObjectiveText1_loc2` text, |
---|
102 | `ObjectiveText1_loc3` text, |
---|
103 | `ObjectiveText1_loc4` text, |
---|
104 | `ObjectiveText1_loc5` text, |
---|
105 | `ObjectiveText1_loc6` text, |
---|
106 | `ObjectiveText1_loc7` text, |
---|
107 | `ObjectiveText2_loc1` text, |
---|
108 | `ObjectiveText2_loc2` text, |
---|
109 | `ObjectiveText2_loc3` text, |
---|
110 | `ObjectiveText2_loc4` text, |
---|
111 | `ObjectiveText2_loc5` text, |
---|
112 | `ObjectiveText2_loc6` text, |
---|
113 | `ObjectiveText2_loc7` text, |
---|
114 | `ObjectiveText3_loc1` text, |
---|
115 | `ObjectiveText3_loc2` text, |
---|
116 | `ObjectiveText3_loc3` text, |
---|
117 | `ObjectiveText3_loc4` text, |
---|
118 | `ObjectiveText3_loc5` text, |
---|
119 | `ObjectiveText3_loc6` text, |
---|
120 | `ObjectiveText3_loc7` text, |
---|
121 | `ObjectiveText4_loc1` text, |
---|
122 | `ObjectiveText4_loc2` text, |
---|
123 | `ObjectiveText4_loc3` text, |
---|
124 | `ObjectiveText4_loc4` text, |
---|
125 | `ObjectiveText4_loc5` text, |
---|
126 | `ObjectiveText4_loc6` text, |
---|
127 | `ObjectiveText4_loc7` text, |
---|
128 | PRIMARY KEY (`entry`) |
---|
129 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
---|
130 | |
---|
131 | DROP TABLE IF EXISTS `locales_npc_text`; |
---|
132 | CREATE TABLE `locales_npc_text` ( |
---|
133 | `entry` int(11) unsigned NOT NULL default '0', |
---|
134 | `Text0_0_loc1` longtext, |
---|
135 | `Text0_0_loc2` longtext, |
---|
136 | `Text0_0_loc3` longtext, |
---|
137 | `Text0_0_loc4` longtext, |
---|
138 | `Text0_0_loc5` longtext, |
---|
139 | `Text0_0_loc6` longtext, |
---|
140 | `Text0_0_loc7` longtext, |
---|
141 | `Text0_1_loc1` longtext, |
---|
142 | `Text0_1_loc2` longtext, |
---|
143 | `Text0_1_loc3` longtext, |
---|
144 | `Text0_1_loc4` longtext, |
---|
145 | `Text0_1_loc5` longtext, |
---|
146 | `Text0_1_loc6` longtext, |
---|
147 | `Text0_1_loc7` longtext, |
---|
148 | `Text1_0_loc1` longtext, |
---|
149 | `Text1_0_loc2` longtext, |
---|
150 | `Text1_0_loc3` longtext, |
---|
151 | `Text1_0_loc4` longtext, |
---|
152 | `Text1_0_loc5` longtext, |
---|
153 | `Text1_0_loc6` longtext, |
---|
154 | `Text1_0_loc7` longtext, |
---|
155 | `Text1_1_loc1` longtext, |
---|
156 | `Text1_1_loc2` longtext, |
---|
157 | `Text1_1_loc3` longtext, |
---|
158 | `Text1_1_loc4` longtext, |
---|
159 | `Text1_1_loc5` longtext, |
---|
160 | `Text1_1_loc6` longtext, |
---|
161 | `Text1_1_loc7` longtext, |
---|
162 | `Text2_0_loc1` longtext, |
---|
163 | `Text2_0_loc2` longtext, |
---|
164 | `Text2_0_loc3` longtext, |
---|
165 | `Text2_0_loc4` longtext, |
---|
166 | `Text2_0_loc5` longtext, |
---|
167 | `Text2_0_loc6` longtext, |
---|
168 | `Text2_0_loc7` longtext, |
---|
169 | `Text2_1_loc1` longtext, |
---|
170 | `Text2_1_loc2` longtext, |
---|
171 | `Text2_1_loc3` longtext, |
---|
172 | `Text2_1_loc4` longtext, |
---|
173 | `Text2_1_loc5` longtext, |
---|
174 | `Text2_1_loc6` longtext, |
---|
175 | `Text2_1_loc7` longtext, |
---|
176 | `Text3_0_loc1` longtext, |
---|
177 | `Text3_0_loc2` longtext, |
---|
178 | `Text3_0_loc3` longtext, |
---|
179 | `Text3_0_loc4` longtext, |
---|
180 | `Text3_0_loc5` longtext, |
---|
181 | `Text3_0_loc6` longtext, |
---|
182 | `Text3_0_loc7` longtext, |
---|
183 | `Text3_1_loc1` longtext, |
---|
184 | `Text3_1_loc2` longtext, |
---|
185 | `Text3_1_loc3` longtext, |
---|
186 | `Text3_1_loc4` longtext, |
---|
187 | `Text3_1_loc5` longtext, |
---|
188 | `Text3_1_loc6` longtext, |
---|
189 | `Text3_1_loc7` longtext, |
---|
190 | `Text4_0_loc1` longtext, |
---|
191 | `Text4_0_loc2` longtext, |
---|
192 | `Text4_0_loc3` longtext, |
---|
193 | `Text4_0_loc4` longtext, |
---|
194 | `Text4_0_loc5` longtext, |
---|
195 | `Text4_0_loc6` longtext, |
---|
196 | `Text4_0_loc7` longtext, |
---|
197 | `Text4_1_loc1` longtext, |
---|
198 | `Text4_1_loc2` longtext, |
---|
199 | `Text4_1_loc3` longtext, |
---|
200 | `Text4_1_loc4` longtext, |
---|
201 | `Text4_1_loc5` longtext, |
---|
202 | `Text4_1_loc6` longtext, |
---|
203 | `Text4_1_loc7` longtext, |
---|
204 | `Text5_0_loc1` longtext, |
---|
205 | `Text5_0_loc2` longtext, |
---|
206 | `Text5_0_loc3` longtext, |
---|
207 | `Text5_0_loc4` longtext, |
---|
208 | `Text5_0_loc5` longtext, |
---|
209 | `Text5_0_loc6` longtext, |
---|
210 | `Text5_0_loc7` longtext, |
---|
211 | `Text5_1_loc1` longtext, |
---|
212 | `Text5_1_loc2` longtext, |
---|
213 | `Text5_1_loc3` longtext, |
---|
214 | `Text5_1_loc4` longtext, |
---|
215 | `Text5_1_loc5` longtext, |
---|
216 | `Text5_1_loc6` longtext, |
---|
217 | `Text5_1_loc7` longtext, |
---|
218 | `Text6_0_loc1` longtext, |
---|
219 | `Text6_0_loc2` longtext, |
---|
220 | `Text6_0_loc3` longtext, |
---|
221 | `Text6_0_loc4` longtext, |
---|
222 | `Text6_0_loc5` longtext, |
---|
223 | `Text6_0_loc6` longtext, |
---|
224 | `Text6_0_loc7` longtext, |
---|
225 | `Text6_1_loc1` longtext, |
---|
226 | `Text6_1_loc2` longtext, |
---|
227 | `Text6_1_loc3` longtext, |
---|
228 | `Text6_1_loc4` longtext, |
---|
229 | `Text6_1_loc5` longtext, |
---|
230 | `Text6_1_loc6` longtext, |
---|
231 | `Text6_1_loc7` longtext, |
---|
232 | `Text7_0_loc1` longtext, |
---|
233 | `Text7_0_loc2` longtext, |
---|
234 | `Text7_0_loc3` longtext, |
---|
235 | `Text7_0_loc4` longtext, |
---|
236 | `Text7_0_loc5` longtext, |
---|
237 | `Text7_0_loc6` longtext, |
---|
238 | `Text7_0_loc7` longtext, |
---|
239 | `Text7_1_loc1` longtext, |
---|
240 | `Text7_1_loc2` longtext, |
---|
241 | `Text7_1_loc3` longtext, |
---|
242 | `Text7_1_loc4` longtext, |
---|
243 | `Text7_1_loc5` longtext, |
---|
244 | `Text7_1_loc6` longtext, |
---|
245 | `Text7_1_loc7` longtext, |
---|
246 | PRIMARY KEY (`entry`) |
---|
247 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
---|
248 | |
---|
249 | DROP TABLE IF EXISTS `locales_page_text`; |
---|
250 | CREATE TABLE `locales_page_text` ( |
---|
251 | `entry` int(11) unsigned NOT NULL default '0', |
---|
252 | `Text_loc1` longtext, |
---|
253 | `Text_loc2` longtext, |
---|
254 | `Text_loc3` longtext, |
---|
255 | `Text_loc4` longtext, |
---|
256 | `Text_loc5` longtext, |
---|
257 | `Text_loc6` longtext, |
---|
258 | `Text_loc7` longtext, |
---|
259 | PRIMARY KEY (`entry`) |
---|
260 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
---|
261 | |
---|
262 | DROP TABLE IF EXISTS `realmd`.`localization`; |
---|
263 | CREATE TABLE `realmd`.`localization` ( |
---|
264 | `locale` tinyint(3) unsigned NOT NULL default '0', |
---|
265 | `string` char(2) NOT NULL DEFAULT '', |
---|
266 | PRIMARY KEY (`locale`) |
---|
267 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
---|
268 | |
---|
269 | INSERT INTO `realmd`.`localization` VALUES |
---|
270 | (0,'en'), |
---|
271 | (2,'fr'), |
---|
272 | (3,'de'); |
---|
273 | |
---|
274 | ALTER TABLE `realmd`.`account` ADD COLUMN `locale` tinyint(3) unsigned NOT NULL DEFAULT '0' AFTER `mutetime`; |
---|