You are here

function imageinfo_cache_schema in Imageinfo Cache 6.2

Same name and namespace in other branches
  1. 6 imageinfo_cache.install \imageinfo_cache_schema()
  2. 7.3 imageinfo_cache.install \imageinfo_cache_schema()

Implementation of hook_schema().

File

./imageinfo_cache.install, line 19
Handles Imageinfo Cache installation and upgrade tasks.

Code

function imageinfo_cache_schema() {
  $schema['cache_imageinfo'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_imageinfo']['description'] = t('Cache table for Imageinfo Cache module.');
  return $schema;
}