You are here

function webform_confirm_email_update_7002 in Webform Confirm Email Address 7

Add database field delete_submissions to webform_confirm_email table

File

./webform_confirm_email.install, line 190

Code

function webform_confirm_email_update_7002() {
  db_add_field('webform_confirm_email', 'delete_submissions', array(
    'type' => 'int',
    'size' => 'tiny',
    'description' => 'If set to TRUE submissions with unconfirmed confirmation requests will be deleted by chron for this webform. NULL means don\'t delete any submissions',
    'not null' => FALSE,
    'default' => 0,
  ));
}