X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FPeriodicInvoicesConfig.pm;fp=SL%2FDB%2FMetaSetup%2FPeriodicInvoicesConfig.pm;h=aeaf1c2ed0796a9f565e99ae940605d61710a6c6;hb=f49ad7f1f479daf79dd78d3ff0e0894c1e6c311c;hp=ab3a619efc3909c7f5ddb4e7d6cdc9845c99e8bb;hpb=c5db99b7266c59922db2dcc519c3cfd2349b86cc;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm b/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm index ab3a619ef..aeaf1c2ed 100644 --- a/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm +++ b/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm @@ -10,15 +10,18 @@ __PACKAGE__->meta->setup( table => 'periodic_invoices_configs', columns => [ - id => { type => 'integer', not_null => 1, sequence => 'id' }, - oe_id => { type => 'integer', not_null => 1 }, - periodicity => { type => 'varchar', length => 10, not_null => 1 }, - print => { type => 'boolean', default => 'false' }, - printer_id => { type => 'integer' }, - copies => { type => 'integer' }, - active => { type => 'boolean', default => 'true' }, - start_date => { type => 'date' }, - ar_chart_id => { type => 'integer', not_null => 1 }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, + oe_id => { type => 'integer', not_null => 1 }, + periodicity => { type => 'varchar', length => 10, not_null => 1 }, + print => { type => 'boolean', default => 'false' }, + printer_id => { type => 'integer' }, + copies => { type => 'integer' }, + active => { type => 'boolean', default => 'true' }, + start_date => { type => 'date' }, + ar_chart_id => { type => 'integer', not_null => 1 }, + terminated => { type => 'boolean', default => 'false' }, + end_date => { type => 'date' }, + extend_automatically_by => { type => 'integer' }, ], primary_key_columns => [ 'id' ],