function system_update_6052

6.x system.install system_update_6052()

Add a missing index on the {menu_router} table.

Related topics

File

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

Code

function system_update_6052() {
  $ret = array();
  db_add_index($ret, 'menu_router', 'tab_root_weight_title', array(array('tab_root', 64), 'weight', 'title'));
  return $ret;
}