function webform_update_7308 in Webform 7.4
Same name and namespace in other branches
- 7.3 webform.install \webform_update_7308()
Update the confirmation_format column to allow it to store strings.
File
- ./
webform.install, line 987 - Webform module install/schema hooks.
Code
function webform_update_7308() {
db_change_field('webform', 'confirmation_format', 'confirmation_format', array(
'description' => 'The {filter_format}.format of the confirmation message.',
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
));
}