You are here

function search_api_solr_schema in Search API Solr 7

Implements hook_schema().

File

./search_api_solr.install, line 6

Code

function search_api_solr_schema() {

  // See, e.g., block_schema() for this trick. Seems to be the best way to get a
  // cache table definition.
  $schema['cache_search_api_solr'] = drupal_get_schema_unprocessed('system', 'cache');
  $schema['cache_search_api_solr']['description'] = 'Cache table for the Search API Solr module to store various data related to Solr servers.';
  return $schema;
}