Index: modules/system/system.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.install,v
retrieving revision 1.339
diff -u -p -r1.339 system.install
--- modules/system/system.install	6 Jun 2009 16:05:27 -0000	1.339
+++ modules/system/system.install	7 Jun 2009 11:37:12 -0000
@@ -875,6 +875,7 @@ function system_schema() {
     'indexes' => array(
       'fit' => array('fit'),
       'tab_parent' => array('tab_parent'),
+      'tab_root_weight_title' => array(array('tab_root', 64), 'weight', 'title'),
     ),
     'primary key' => array('path'),
   );
@@ -3538,6 +3539,15 @@ function system_update_7025() {
 }
 
 /**
+ * Add a missing index on the {menu_router} table.
+ */
+function system_update_7026() {
+  $ret = array();
+  db_add_index($ret, 'menu_router', 'tab_root_weight_title', array(array('tab_root', 64), 'weight', 'title'));
+  return $ret;
+}
+
+/**
  * @} End of "defgroup updates-6.x-to-7.x"
  * The next series of updates should start at 8000.
  */
