function amazons3_schema in AmazonS3 7.2
Same name and namespace in other branches
- 7 amazons3.install \amazons3_schema()
Implements hook_schema().
File
- ./
amazons3.install, line 74 - Install, update and uninstall functions for the AmazonS3 module.
Code
function amazons3_schema() {
$schema = array();
$schema['cache_amazons3_metadata'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_amazons3_metadata']['description'] = 'Cache for AmazonS3 metadata.';
return $schema;
}