You are here

function webform_update_6324 in Webform 6.3

Add the ability to auto-save as draft between pages.

File

./webform.install, line 1376
Webform module install/schema hooks.

Code

function webform_update_6324() {
  $ret = array();
  db_add_field($ret, 'webform', 'auto_save', array(
    'type' => 'int',
    'size' => 'tiny',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}