1 # This file has been auto-generated. Do not modify it; it will be overwritten
2 # by rose_auto_create_model.pl automatically.
3 package SL::DB::ReconciliationLink;
7 use parent qw(SL::DB::Object);
9 __PACKAGE__->meta->table('reconciliation_links');
11 __PACKAGE__->meta->columns(
12 acc_trans_id => { type => 'bigint', not_null => 1 },
13 bank_transaction_id => { type => 'integer', not_null => 1 },
14 id => { type => 'integer', not_null => 1, sequence => 'id' },
15 rec_group => { type => 'integer', not_null => 1 },
18 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
20 __PACKAGE__->meta->foreign_keys(
22 class => 'SL::DB::AccTransaction',
23 key_columns => { acc_trans_id => 'acc_trans_id' },
27 class => 'SL::DB::BankTransaction',
28 key_columns => { bank_transaction_id => 'id' },