You are here

function features_update_7200 in Features 7.2

Add {cache_features} table.

File

./features.install, line 188
Install, update and uninstall functions for the features module.

Code

function features_update_7200() {
  if (!db_table_exists('cache_features')) {
    $schema = drupal_get_schema_unprocessed('system', 'cache');
    db_create_table('cache_features', $schema);
  }
}