function imageinfo_cache_schema in Imageinfo Cache 6
Same name and namespace in other branches
- 6.2 imageinfo_cache.install \imageinfo_cache_schema()
- 7.3 imageinfo_cache.install \imageinfo_cache_schema()
Implementation of hook_schema().
File
- ./
imageinfo_cache.install, line 14
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;
}