You are here

function advagg_update_6100 in Advanced CSS/JS Aggregation 6

Update 6100 - Add new column to table.

File

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

Code

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

  // Add in data column
  db_add_field($ret, 'advagg_files', 'data', array(
    'description' => 'Extra data about this file. Example would be what compressors work with it.',
    'type' => 'text',
    'not null' => TRUE,
    'size' => 'big',
  ));
  return $ret;
}