You are here

function form_builder_update_6000 in Form Builder 6

Change the {form_builder_cache} table to use a 'longblob' data column.

File

./form_builder.install, line 88

Code

function form_builder_update_6000() {
  $ret = array();
  $spec = array(
    'type' => 'blob',
    'not null' => FALSE,
    'size' => 'big',
  );
  db_change_field($ret, 'form_builder_cache', 'data', 'data', $spec);
  return $ret;
}