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::BankTransaction;
7 use parent qw(SL::DB::Object);
9 __PACKAGE__->meta->table('bank_transactions');
11 __PACKAGE__->meta->columns(
12 amount => { type => 'numeric', not_null => 1, precision => 15, scale => 5 },
13 cleared => { type => 'boolean', default => 'false', not_null => 1 },
14 currency_id => { type => 'integer', not_null => 1 },
15 id => { type => 'serial', not_null => 1 },
16 invoice_amount => { type => 'numeric', default => '0', precision => 15, scale => 5 },
17 itime => { type => 'timestamp', default => 'now()' },
18 local_bank_account_id => { type => 'integer', not_null => 1 },
19 purpose => { type => 'text' },
20 remote_account_number => { type => 'text' },
21 remote_bank_code => { type => 'text' },
22 remote_name => { type => 'text' },
23 transaction_code => { type => 'text' },
24 transaction_id => { type => 'integer' },
25 transaction_text => { type => 'text' },
26 transdate => { type => 'date', not_null => 1 },
27 valutadate => { type => 'date', not_null => 1 },
30 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
32 __PACKAGE__->meta->allow_inline_column_values(1);
34 __PACKAGE__->meta->foreign_keys(
36 class => 'SL::DB::Currency',
37 key_columns => { currency_id => 'id' },
40 local_bank_account => {
41 class => 'SL::DB::BankAccount',
42 key_columns => { local_bank_account_id => 'id' },