Index: webform.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/webform.install,v
retrieving revision 1.40.2.15
diff -u -r1.40.2.15 webform.install
--- webform.install	26 Aug 2010 09:33:52 -0000	1.40.2.15
+++ webform.install	30 Aug 2010 00:21:14 -0000
@@ -200,7 +200,6 @@
         'description' => 'A list of components that will not be included in the %email_values token. A list of CIDs separated by commas.',
         'type' => 'text',
         'not null' => TRUE,
-        'default' => '',
       ),
     ),
     'primary key' => array('nid', 'eid'),
@@ -807,7 +806,7 @@
   $ret = array();
 
   // Add the new column to the e-mail table.
-  db_add_field($ret, 'webform_emails', 'excluded_components', array('type' => 'text', 'not null' => TRUE, 'default' => ''));
+  db_add_field($ret, 'webform_emails', 'excluded_components', array('type' => 'text', 'not null' => TRUE, 'initial' => ''));
 
   // Build up our EXCLUSION lists, finding all components not in e-mails.
   $result = db_query("SELECT nid, cid FROM {webform_component} WHERE email = 0 ORDER BY nid");
