You are here

function system_update_7062 in Drupal 7

Replace 'system_list' index with 'bootstrap' index on {system}.

Related topics

File

modules/system/system.install, line 3052
Install, update and uninstall functions for the system module.

Code

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',
  ));
}