function system_update_6052
Add a missing index on the {menu_router} table.
Related topics
Archivo
- drupal-6.x/
modules/ system/ system.install, line 2677
Código
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;
}