You are here

function views_schema_6004 in Views (for Drupal 7) 7.3

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

Enlarge the views_object_cache.data column to prevent truncation and JS errors.

File

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

Code

function views_schema_6004() {
  $schema = views_schema(__FUNCTION__);
  $schema['views_object_cache']['fields']['data']['type'] = 'text';
  $schema['views_object_cache']['fields']['data']['size'] = 'big';
  return $schema;
}