kivitendo/SL/DB/MetaSetup/DunningConfig.pm @ e7ae5b6a
4fd22b56 | Sven Schöling | # This file has been auto-generated. Do not modify it; it will be overwritten
|
||
# by rose_auto_create_model.pl automatically.
|
||||
package SL::DB::DunningConfig;
|
||||
use strict;
|
||||
use base qw(SL::DB::Object);
|
||||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->table('dunning_config');
|
||
__PACKAGE__->meta->columns(
|
||||
id => { type => 'integer', not_null => 1, sequence => 'id' },
|
||||
dunning_level => { type => 'integer' },
|
||||
dunning_description => { type => 'text' },
|
||||
active => { type => 'boolean' },
|
||||
auto => { type => 'boolean' },
|
||||
email => { type => 'boolean' },
|
||||
terms => { type => 'integer' },
|
||||
payment_terms => { type => 'integer' },
|
||||
fee => { type => 'numeric', precision => 5, scale => 15 },
|
||||
interest_rate => { type => 'numeric', precision => 5, scale => 15 },
|
||||
email_body => { type => 'text' },
|
||||
email_subject => { type => 'text' },
|
||||
email_attachment => { type => 'boolean' },
|
||||
template => { type => 'text' },
|
||||
create_invoices_for_fees => { type => 'boolean', default => 'true' },
|
||||
);
|
||||
__PACKAGE__->meta->primary_key_columns([ 'id' ]);
|
||||
# __PACKAGE__->meta->initialize;
|
||||
4fd22b56 | Sven Schöling | 1;
|
||
;
|