function webform_update_7415 in Webform 7.4
Increase length of webform.redirect_url.
File
- ./
webform.install, line 1937 - Webform module install/schema hooks.
Code
function webform_update_7415() {
$spec = array(
'description' => 'The URL a user is redirected to after submitting a form.',
'type' => 'varchar',
'length' => 2048,
'default' => '<confirmation>',
);
db_change_field('webform', 'redirect_url', 'redirect_url', $spec);
}