e7378646fafca6be8534253ae455d639045c3489
[kivitendo-erp.git] / SL / DB / MetaSetup / DunningConfig.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::DunningConfig;
4
5 use strict;
6
7 use parent qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('dunning_config');
10
11 __PACKAGE__->meta->columns(
12   active                   => { type => 'boolean' },
13   auto                     => { type => 'boolean' },
14   create_invoices_for_fees => { type => 'boolean', default => 'true' },
15   dunning_description      => { type => 'text' },
16   dunning_level            => { type => 'integer' },
17   email                    => { type => 'boolean' },
18   email_attachment         => { type => 'boolean' },
19   email_body               => { type => 'text' },
20   email_subject            => { type => 'text' },
21   fee                      => { type => 'numeric', precision => 15, scale => 5 },
22   id                       => { type => 'integer', not_null => 1, sequence => 'id' },
23   interest_rate            => { type => 'numeric', precision => 15, scale => 5 },
24   payment_terms            => { type => 'integer' },
25   print_original_invoice   => { type => 'boolean' },
26   template                 => { type => 'text' },
27   terms                    => { type => 'integer' },
28 );
29
30 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
31
32 1;
33 ;