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