diff options
Diffstat (limited to 'FS/bin/freeside-setup')
-rwxr-xr-x | FS/bin/freeside-setup | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/FS/bin/freeside-setup b/FS/bin/freeside-setup index 522c0a1a2..33b3465e0 100755 --- a/FS/bin/freeside-setup +++ b/FS/bin/freeside-setup @@ -1115,6 +1115,21 @@ sub tables_hash_hack { 'index' => [], }, + 'cust_pay_refund' => { + 'columns' => [ + 'payrefundnum', 'serial', '', '', + 'paynum', 'int', '', '', + 'refundnum', 'int', '', '', + '_date', @date_type, + 'amount', @money_type, + ], + 'primary_key' => 'payrefundnum', + 'unique' => [], + 'index' => [ ['paynum'], ['refundnum'] ], + }, + + + ); %tables; |