You are here

function search_api_attachments_schema in Search API attachments 7

Implements hook_schema().

1 call to search_api_attachments_schema()
search_api_attachments_update_7101 in ./search_api_attachments.install
Add a cache table to store file extractions.

File

./search_api_attachments.install, line 66
Module install file.

Code

function search_api_attachments_schema() {

  // Create a standard Drupal cache table.
  // We'll be using this store file extractions.
  $schema['cache_search_api_attachments'] = drupal_get_schema_unprocessed('system', 'cache');
  return $schema;
}