You are here

function system_update_6052 in Drupal 6

Add a missing index on the {menu_router} table.

Related topics

File

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