Left file: C:\Users\dbh\Documents\Downloads\uc_coupon-6.x-1.x-dev.tar\uc_coupon-6.x-1.x-dev\uc_coupon\uc_coupon.install
Right file: C:\Users\dbh\Documents\Downloads\uc_coupon\uc_coupon.install
186a187,197
> 
> //$$$ 20090526 David Harrison, Linker Systems, Inc, dbh@linker.com, +1-949-697-6532
> //$$$ add valid_from to the schema. Coupons need to have a start date.
> function uc_coupon_update_6002() {
>   $ret = array();
>   if (!db_column_exists('uc_coupons', 'valid_from')) {
>     db_add_field($ret, 'uc_coupons', 'valid_from', array('type' => 'int'));
>   }
>   return $ret;
> }
> 
