system_update_6048

Versions
6 – 7
system_update_6048()
  • Increase the size of the 'load_functions' and 'to_arg_functions' fields in table 'menu_router'.

Related topics

Code

modules/system/system.install, line 2546

<?php
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;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.