function form_builder_update_7001 in Form Builder 7
Same name and namespace in other branches
- 7.2 form_builder.install \form_builder_update_7001()
Change the {form_builder_cache} table to use a longer form_id column.
File
- ./
form_builder.install, line 47
Code
function form_builder_update_7001() {
$spec = array(
'type' => 'varchar',
'length' => '128',
'not null' => FALSE,
);
db_change_field('form_builder_cache', 'form_id', 'form_id', $spec);
}