function system_update_6048 in Drupal 6
Increase the size of the 'load_functions' and 'to_arg_functions' fields in table 'menu_router'.
Related topics
File
- 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;
}