You are here

function webform_update_6318 in Webform 6.3

Ensure that the confirmation format column is correctly using size = 'tiny'.

File

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

Code

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