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 