You are here

function views_update_6006 in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 views.install \views_update_6006()
  2. 6.2 views.install \views_update_6006()

File

./views.install, line 371
Contains install and update functions for Views.

Code

function views_update_6006() {
  $table = drupal_get_schema_unprocessed('system', 'cache');
  $table['description'] = 'Cache table for views to store pre-rendered queries, results, and display output.';
  $table['fields']['serialized']['default'] = 1;
  db_create_table('cache_views_data', $table);
}