You are here

function advagg_update_6104 in Advanced CSS/JS Aggregation 6

Update 6104 - Create a file builder cache table.

File

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

Code

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

  // Create cache table.
  $schema['cache_advagg_file_builder'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_advagg_file_builder']['description'] = t('Cache table for Advanced CSS/JS Aggregation. Used to cache output from the advagg_css_js_file_builder function.');
  db_create_table($ret, 'cache_advagg_file_builder', $schema['cache_advagg_file_builder']);
  return $ret;
}