Index: webform.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/webform.install,v
retrieving revision 1.40.2.14
diff -u -r1.40.2.14 webform.install
--- webform.install	19 Aug 2010 17:57:10 -0000	1.40.2.14
+++ webform.install	26 Aug 2010 09:29:01 -0000
@@ -29,6 +29,7 @@
       'confirmation_format' => array(
         'description' => 'The input format used by the confirmation message.',
         'type' => 'int',
+        'size' => 'tiny',
         'not null' => TRUE,
         'default' => 0,
       ),
@@ -1172,6 +1173,15 @@
 }
 
 /**
+ * Ensure that the confirmation format column is correctly using size = 'tiny'.
+ */
+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;
+}
+
+/**
  * Recursively delete all files and folders in the specified filepath, then
  * delete the containing folder.
  *
