diff options
author | steve <steve> | 2002-12-14 11:17:27 +0000 |
---|---|---|
committer | steve <steve> | 2002-12-14 11:17:27 +0000 |
commit | 9d722730eba9b3d03b6a68615e99d5de9b830111 (patch) | |
tree | 30ba8413572bc53caa5108a7ae34571e238d069e /bin/fs-setup | |
parent | 8696d75137d1cbdcf40bf66af0438f45f20f1d1a (diff) |
add email address to shellcommands
Diffstat (limited to 'bin/fs-setup')
-rwxr-xr-x | bin/fs-setup | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/bin/fs-setup b/bin/fs-setup index 7cfaafa4b..cf85ebb88 100755 --- a/bin/fs-setup +++ b/bin/fs-setup @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: fs-setup,v 1.96.4.3 2002-11-20 09:07:30 ivan Exp $ +# $Id: fs-setup,v 1.96.4.4 2002-12-14 11:16:04 steve 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', $char_d, #see cust_main above + 'payinfo', 'varchar', 'NULL', 16, #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', $char_d, #see cust_main above + 'payinfo', 'varchar', 'NULL', 16, #see cust_main above 'paybatch', 'varchar', 'NULL', $char_d, 'closed', 'char', 'NULL', 1, ], @@ -821,12 +821,10 @@ sub tables_hash_hack { 'columns' => [ 'recnum', 'int', '', '', 'svcnum', 'int', '', '', - #'reczone', 'varchar', '', $char_d, - 'reczone', 'varchar', '', 255, + 'reczone', 'varchar', '', $char_d, 'recaf', 'char', '', 2, 'rectype', 'char', '', 5, - #'recdata', 'varchar', '', $char_d, - 'recdata', 'varchar', '', 255, + 'recdata', 'varchar', '', $char_d, ], 'primary_key' => 'recnum', 'unique' => [], |