You are here

function search_api_attachments_update_7101 in Search API attachments 7

Add a cache table to store file extractions.

File

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

Code

function search_api_attachments_update_7101() {
  if (!db_table_exists('cache_search_api_attachments')) {
    $schema = search_api_attachments_schema();
    db_create_table('cache_search_api_attachments', $schema['cache_search_api_attachments']);
  }
}