You are here

function css_emimage_update_6200 in CSS Embedded Images 6.2

Update 6200 - Add in the cache_css_emimage_advagg table.

File

./css_emimage.install, line 45
Install, update, and uninstall functions for the css_emimage module.

Code

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

  // Create cache table.
  $schema['cache_css_emimage_advagg'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_css_emimage_advagg']['description'] = t('Cache table for CSS Embedded Image Advagg integration. Used to keep track of what kind of file the md5 is');
  db_create_table($ret, 'cache_css_emimage_advagg', $schema['cache_css_emimage_advagg']);
  return $ret;
}