--- R:/downloaded/drupal6/modules-apr-2010-latest/uc_downpayments/1103142-235b9f9-1/1103142-235b9f9/uc_downpayment.install	Wed Jul 13 23:39:54 2011
+++ R:/downloaded/drupal6/modules-apr-2010-latest/uc_downpayments/1103142-235b9f9/uc_downpayment.install	Fri Sep 16 17:07:21 2011
@@ -5,6 +5,13 @@
  * Install, update and uninstall functions for the UC Downpayment module.
  */
 
+function uc_downpayment_update_6002()
+{
+  $ret = array();
+  db_add_field($ret, 'uc_downpayment_products', 'dpdays', array('type' => 'int'));
+  return $ret;
+}
+
 /**
  * Implements hook_schema().
  */
@@ -55,6 +62,14 @@
         'unsigned' => FALSE,
         'not null' => FALSE,
         'default' => 1,
+      ),
+      'dpdays' => array(
+        'description' => t('Number of days til payment is due.'),
+        'type' => 'int',
+        'size' => 'small',
+        'unsigned' => FALSE,
+        'not null' => TRUE,
+        'default' => 0,
       ),
     ),
     'primary key' => array('pfid'),
