function advagg_update_6103 in Advanced CSS/JS Aggregation 6
Update 6103 - Create a bundle reuse cache table.
File
- ./
advagg.install, line 801 - Handles Advanced Aggregation installation and upgrade tasks.
Code
function advagg_update_6103() {
$ret = array();
// Create cache table.
$schema['cache_advagg_bundle_reuse'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_advagg_bundle_reuse']['description'] = t('Cache table for Advanced CSS/JS Aggregation. Used to keep data about existing bundles that can be used.');
db_create_table($ret, 'cache_advagg_bundle_reuse', $schema['cache_advagg_bundle_reuse']);
return $ret;
}