You are here

function views_data_export_update_7301 in Views data export 7.4

Same name and namespace in other branches
  1. 7.3 views_data_export.install \views_data_export_update_7301()

Change the object cache table to support postgres installations

File

./views_data_export.install, line 148

Code

function views_data_export_update_7301() {
  $spec = array(
    'type' => 'blob',
    'size' => 'big',
    'description' => 'Serialized data being stored.',
    'serialize' => TRUE,
  );
  db_change_field('views_data_export_object_cache', 'data', 'data', $spec);
}