function system_update_7062
Replace 'system_list' index with 'bootstrap' index on {system}.
Related topics
Archivo
- drupal-7.x/
modules/ system/ system.install, line 2914 - Install, update and uninstall functions for the system module.
Código
function system_update_7062() {
db_drop_index('system', 'bootstrap');
db_drop_index('system', 'system_list');
db_add_index('system', 'system_list', array('status', 'bootstrap', 'type', 'weight', 'name'));
}