77a24c94e44bcdba076bce625488670523f0974e
[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 parent 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   transactioncode       => { type => 'text' },
25   transactiontext       => { type => 'text' },
26   transdate             => { type => 'date', not_null => 1 },
27   valutadate            => { type => 'date', not_null => 1 },
28 );
29
30 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
31
32 __PACKAGE__->meta->allow_inline_column_values(1);
33
34 __PACKAGE__->meta->foreign_keys(
35   currency => {
36     class       => 'SL::DB::Currency',
37     key_columns => { currency_id => 'id' },
38   },
39
40   local_bank_account => {
41     class       => 'SL::DB::BankAccount',
42     key_columns => { local_bank_account_id => 'id' },
43   },
44 );
45
46 1;
47 ;