You are here

function feeds_update_7212 in Feeds 7.2

Create {cache_feeds_http} table.

File

./feeds.install, line 760
Schema definitions install/update/uninstall hooks.

Code

function feeds_update_7212() {
  if (!db_table_exists('cache_feeds_http')) {
    $schema = drupal_get_schema_unprocessed('system', 'cache');
    $schema['description'] = 'Cache table for Feeds downloads.';
    db_create_table('cache_feeds_http', $schema);
  }
}