You are here

function dynamic_background_inherit_schema in Dynamic Background 7.2

Implements hook_schema().

File

modules/dynamic_background_inherit/dynamic_background_inherit.install, line 10
Schema, installation and update hooks for Dynamic Background Inherit.

Code

function dynamic_background_inherit_schema() {
  $schema = array();

  // Mirror the core 'cache' table.
  $schema['cache_dynamic_background_inherit'] = drupal_get_schema_unprocessed('system', 'cache');
  return $schema;
}