function webform_update_6320 in Webform 6.3
Set the default for the "submit_notice" column to 1.
File
- ./
webform.install, line 1333 - Webform module install/schema hooks.
Code
function webform_update_6320() {
$ret = array();
db_change_field($ret, 'webform', 'submit_notice', 'submit_notice', array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 1,
));
return $ret;
}