You are here

function emfield_schema in Embedded Media Field 6.2

Same name and namespace in other branches
  1. 6.3 emfield.install \emfield_schema()

Implementation of hook_schema().

File

./emfield.install, line 397
This is the emfield.module's install, configuration, and removal file.

Code

function emfield_schema() {
  $schema = array();
  $schema['cache_emfield_xml'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_emfield_xml']['description'] = 'Cache table used to store third party XML files for Embedded Media Field.';
  return $schema;
}