diff options
author | ivan <ivan> | 2002-11-20 09:07:31 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-11-20 09:07:31 +0000 |
commit | 57e6dca948e9d9afffb584645503d6bd2602139c (patch) | |
tree | 07791a29fc9e408cef31fd4ef5c10942cdf23266 /FS/bin/freeside-setup | |
parent | 51a85d0841e09edf685519153139fcdb4f6d5749 (diff) |
ugh... need to increase length of payinfo field in cust_pay and cust_refund
for ACH
Diffstat (limited to 'FS/bin/freeside-setup')
-rwxr-xr-x | FS/bin/freeside-setup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/bin/freeside-setup b/FS/bin/freeside-setup index 9418a3c79..133d248b8 100755 --- a/FS/bin/freeside-setup +++ b/FS/bin/freeside-setup @@ -547,7 +547,7 @@ sub tables_hash_hack { '_date', @date_type, 'payby', 'char', '', 4, # CARD/BILL/COMP, should be index into # payment type table. - 'payinfo', 'varchar', 'NULL', 16, #see cust_main above + 'payinfo', 'varchar', 'NULL', $char_d, #see cust_main above 'paybatch', 'varchar', 'NULL', $char_d, #for auditing purposes. 'closed', 'char', 'NULL', 1, ], @@ -624,7 +624,7 @@ sub tables_hash_hack { 'reason', 'varchar', '', $char_d, 'payby', 'char', '', 4, # CARD/BILL/COMP, should be index # into payment type table. - 'payinfo', 'varchar', 'NULL', 16, #see cust_main above + 'payinfo', 'varchar', 'NULL', $char_d, #see cust_main above 'paybatch', 'varchar', 'NULL', $char_d, 'closed', 'char', 'NULL', 1, ], |