You are here

function asset_entitycache_schema in Asset 7

Implements hook_schema().

File

modules/asset_entitycache/asset_entitycache.install, line 10
Install functions for the Asset Entity cache module.

Code

function asset_entitycache_schema() {
  $schema = array();
  $schema['cache_entity_asset'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_entity_asset']['description'] = "Cache table used to store asset entity records.";
  return $schema;
}