function system_update_6048

6.x system.install system_update_6048()
  • Increase the size of the 'load_functions' and 'to_arg_functions' fields in table 'menu_router'.

Related topics

File

drupal-6.x/modules/system/system.install, line 2614

Code

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;
}