function bean_entitycache_schema in Bean (for Drupal 7) 7
Implements hook_schema().
File
- bean_entitycache/
bean_entitycache.install, line 11 - Install functions for the Bean Entity cache module.
Code
function bean_entitycache_schema() {
$schema = array();
$schema['cache_entity_bean'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_entity_bean']['description'] = 'Entity Cache table for the Bean module.';
return $schema;
}