system_update_6052

Versions
6 – 7
system_update_6052()

Add a missing index on the {menu_router} table.

Related topics

Code

modules/system/system.install, line 2609

<?php
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;
}
?>
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.