You are here

function oembed_schema in oEmbed 7.0

Same name and namespace in other branches
  1. 7 oembed.install \oembed_schema()

Implementation of hook_schema().

File

./oembed.install, line 6

Code

function oembed_schema() {
  $schema['oembed_provider'] = _oembed_provider_schema_1();
  $schema['cache_oembed'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_oembed']['description'] = 'Cache table for the oEmbed module.';
  return $schema;
}