You are here

function pagepreview_schema in Page Preview 7

Implementation of hook_schema().

1 call to pagepreview_schema()
pagepreview_update_7100 in ./pagepreview.install
Create a dedicated cache table.

File

./pagepreview.install, line 5

Code

function pagepreview_schema() {
  $schema['cache_pagepreview'] = drupal_get_schema_unprocessed('system', 'cache');
  return $schema;
}