You are here

function form_builder_update_6001 in Form Builder 6

Change the {form_builder_cache} table to use a longer form_id column.

File

./form_builder.install, line 102

Code

function form_builder_update_6001() {
  $ret = array();
  $spec = array(
    'type' => 'varchar',
    'length' => '128',
    'not null' => FALSE,
  );
  db_change_field($ret, 'form_builder_cache', 'form_id', 'form_id', $spec);
  return $ret;
}