You are here

function advagg_update_6102 in Advanced CSS/JS Aggregation 6

Update 6102 - Add new field to table.

File

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

Code

function advagg_update_6102() {
  $ret = array();

  // Add in root column.
  db_add_field($ret, 'advagg_bundles', 'root', array(
    'description' => 'If 1 then it is a root file. 0 means not root file.',
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}