Index: modules/locale/locale.install =================================================================== RCS file: /cvs/drupal/drupal/modules/locale/locale.install,v retrieving revision 1.11 diff -u -p -r1.11 locale.install --- modules/locale/locale.install 25 May 2007 15:47:56 -0000 1.11 +++ modules/locale/locale.install 9 Jun 2007 10:56:39 -0000 @@ -92,6 +92,15 @@ function locale_update_6002() { } /** + * Fix missing locale -> language column rename update from locale_update_6001(). + */ +function locale_update_6003() { + $ret = array(); + db_change_field($ret, 'locales_target', 'locale', 'language', array('type' => 'varchar', 'length' => 12, 'not null' => TRUE, 'default' => '')); + return $ret; +} + +/** * @} End of "defgroup updates-5.x-to-6.x" */