a2dd2955eb9db7173a9de752c07a559a41e60846
[kivitendo-erp.git] / SL / DB / MetaSetup / BankTransaction.pm
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;
4
5 use strict;
6
7 use base qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('bank_transactions');
10
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_id        => { type => 'integer' },
24   transdate             => { type => 'date', not_null => 1 },
25   valutadate            => { type => 'date', not_null => 1 },
26 );
27
28 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
29
30 __PACKAGE__->meta->allow_inline_column_values(1);
31
32 __PACKAGE__->meta->foreign_keys(
33   currency => {
34     class       => 'SL::DB::Currency',
35     key_columns => { currency_id => 'id' },
36   },
37
38   local_bank_account => {
39     class       => 'SL::DB::BankAccount',
40     key_columns => { local_bank_account_id => 'id' },
41   },
42 );
43
44 1;
45 ;