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 /bin/fs-setup | |
parent | 51a85d0841e09edf685519153139fcdb4f6d5749 (diff) |
ugh... need to increase length of payinfo field in cust_pay and cust_refund
for ACH
Diffstat (limited to 'bin/fs-setup')
-rwxr-xr-x | bin/fs-setup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/fs-setup b/bin/fs-setup index 946b95003..7cfaafa4b 100755 --- a/bin/fs-setup +++ b/bin/fs-setup @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: fs-setup,v 1.96.4.2 2002-11-19 20:36:46 ivan Exp $ +# $Id: fs-setup,v 1.96.4.3 2002-11-20 09:07:30 ivan Exp $ #to delay loading dbdef until we're ready BEGIN { $FS::Record::setup_hack = 1; } @@ -545,7 +545,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, ], @@ -622,7 +622,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, ], |