X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/5534d9cb025cc4036f6fcce28a24c5e5b164641e..c6dd542b51ae9549ad42a54f9023b905412bbab9:/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm?ds=inline diff --git a/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm b/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm index 1aeb42fd7..0c0545384 100644 --- a/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm +++ b/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm @@ -4,7 +4,7 @@ package SL::DB::PeriodicInvoicesConfig; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('periodic_invoices_configs'); @@ -12,6 +12,7 @@ __PACKAGE__->meta->columns( active => { type => 'boolean', default => 'true' }, ar_chart_id => { type => 'integer', not_null => 1 }, copies => { type => 'integer' }, + direct_debit => { type => 'boolean', default => 'false', not_null => 1 }, end_date => { type => 'date' }, extend_automatically_by => { type => 'integer' }, first_billing_date => { type => 'date' },