function gravatar_schema in Gravatar integration 7
Same name and namespace in other branches
- 6 gravatar.install \gravatar_schema()
Implementation of hook_schema().
File
- ./
gravatar.install, line 11 - Install and uninstall schema and functions for the gravatar module.
Code
function gravatar_schema() {
$schema['cache_gravatar'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_gravatar']['description'] = t('Cache table for the Gravatar module to store already processed and cached images.');
return $schema;
}