function apachesolr_update_7014 in Apache Solr Search 7
Same name and namespace in other branches
- 8 apachesolr.install \apachesolr_update_7014()
Remove status from the key.
File
- ./
apachesolr.install, line 862 - Install and related hooks for apachesolr_search.
Code
function apachesolr_update_7014() {
if (variable_get('apachesolr_update_from_6303', FALSE)) {
return NULL;
}
$types = array(
'other' => 'apachesolr_index_entities',
'node' => 'apachesolr_index_entities_node',
);
foreach ($types as $type => $table) {
db_drop_index($table, 'changed');
db_add_index($table, 'bundle_changed', array(
'bundle',
'changed',
));
}
}