function views_update_6004 in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 6.2 views.install \views_update_6004()
- 7.3 views.install \views_update_6004()
File
- ./views.install, line 319
- views.install
Contains install and update functions for Views.
Code
function views_update_6004() {
$ret = array();
$new_field = array(
'type' => 'text',
'size' => 'big',
'description' => 'Serialized data being stored.',
'serialize' => TRUE,
);
db_drop_field($ret, 'views_object_cache', 'data');
db_add_field($ret, 'views_object_cache', 'data', $new_field);
return $ret;
}