You are here

function css_emimage_schema in CSS Embedded Images 6.2

Implementation of hook_schema.

File

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

Code

function css_emimage_schema() {
  $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');
  return $schema;
}