function system_update_6048
- Increase the size of the 'load_functions' and 'to_arg_functions' fields in table 'menu_router'.
Related topics
Archivo
- drupal-6.x/modules/system/system.install, line 2614
Código
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;
}