DB/Schema: Rename and change types of a few fields in locales_creature_text and locales_npc_text

locales_creature_text.textGroup -> locales_creature_text.groupid
locales_npc_text.entry -> locales_npc_text.ID
This commit is contained in:
Nay
2012-12-27 16:42:05 +00:00
parent 29f3476947
commit 7fe2d7309a
3 changed files with 7 additions and 3 deletions

View File

@@ -0,0 +1,4 @@
ALTER TABLE `locales_creature_text` CHANGE `entry` `entry` mediumint(8) unsigned NOT NULL DEFAULT '0';
ALTER TABLE `locales_creature_text` CHANGE `textGroup` `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0';
ALTER TABLE `locales_creature_text` CHANGE `id` `id` tinyint(3) unsigned NOT NULL DEFAULT '0';
ALTER TABLE `locales_npc_text` CHANGE `entry` `ID` mediumint(8) unsigned NOT NULL DEFAULT '0';