function form_builder_update_7000 in Form Builder 7
Same name and namespace in other branches
- 7.2 form_builder.install \form_builder_update_7000()
Change the {form_builder_cache} table to use a 'longblob' data column.
File
- ./
form_builder.install, line 35
Code
function form_builder_update_7000() {
$spec = array(
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
);
db_change_field('form_builder_cache', 'data', 'data', $spec);
}