You are here

function views_update_6006 in Views (for Drupal 7) 6.2

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

File

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

Code

function views_update_6006() {
  $ret = array();
  $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($ret, 'cache_views_data', $table);
  return $ret;
}