You are here

function advagg_update_6110 in Advanced CSS/JS Aggregation 6

Update 6110 - Add index to advagg_bundles table.

File

./advagg.install, line 998
Handles Advanced Aggregation installation and upgrade tasks.

Code

function advagg_update_6110() {
  $ret = array();
  db_add_index($ret, 'advagg_bundles', 'root_timestamp', array(
    'root',
    'timestamp',
  ));
  return $ret;
}