Index: modules/locale/locale.install =================================================================== RCS file: /cvs/drupal/drupal/modules/locale/locale.install,v retrieving revision 1.48 diff -u -p -r1.48 locale.install --- modules/locale/locale.install 10 Sep 2009 06:38:18 -0000 1.48 +++ modules/locale/locale.install 14 Sep 2009 09:14:11 -0000 @@ -28,6 +28,24 @@ function locale_install() { } /** + * @defgroup updates-6.x-extra Extra locale updates for 6.x + * @{ + */ + +/** + * Allow longer location. + */ +function locale_update_6006() { + $ret = array(); + db_change_field($ret, 'locales_source', 'location', 'location', array('type' => 'text', 'not null' => FALSE)); + return $ret; +} + +/** + * @} End of "defgroup updates-6.x-extra" + */ + +/** * @defgroup updates-6.x-to-7.x Locale updates from 6.x to 7.x * @{ */ Index: modules/system/system.install =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.install,v retrieving revision 1.385 diff -u -p -r1.385 system.install --- modules/system/system.install 10 Sep 2009 06:38:20 -0000 1.385 +++ modules/system/system.install 14 Sep 2009 09:14:12 -0000 @@ -1481,9 +1481,38 @@ function system_schema() { // Updates for core. function system_update_last_removed() { - return 6049; + return 6047; } +/** + * @defgroup updates-6.x-extra Extra system updates for 6.x + * @{ + */ + +/** + * Increase the size of the 'load_functions' and 'to_arg_functions' fields in + * table 'menu_router'. + */ +function system_update_6048() { + $ret = array(); + db_change_field($ret, 'menu_router', 'load_functions', 'load_functions', array('type' => 'text', 'not null' => TRUE)); + db_change_field($ret, 'menu_router', 'to_arg_functions', 'to_arg_functions', array('type' => 'text', 'not null' => TRUE)); + return $ret; +} + +/** + * Replace src index on the {url_alias} table with src, language. + */ +function system_update_6049() { + $ret = array(); + db_drop_index($ret, 'url_alias', 'src'); + db_add_index($ret, 'url_alias', 'src_language', array('src', 'language')); + return $ret; +} + +/** + * @} End of "defgroup updates-6.x-extra" + */ /** * @defgroup updates-6.x-to-7.x System updates from 6.x to 7.x