X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FDB%2FMetaSetup%2FPaymentTerm.pm;h=bc0587e7ce39c721a616fd8413c5b34e49267499;hb=refs%2Fheads%2Fswiss;hp=7dd067f6b098cb115484ccbcb3486ddd3b7932f2;hpb=fb03d191f53516cbf1022e755665556e7f1acb82;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/PaymentTerm.pm b/SL/DB/MetaSetup/PaymentTerm.pm index 7dd067f6b..bc0587e7c 100644 --- a/SL/DB/MetaSetup/PaymentTerm.pm +++ b/SL/DB/MetaSetup/PaymentTerm.pm @@ -4,11 +4,12 @@ package SL::DB::PaymentTerm; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('payment_terms'); __PACKAGE__->meta->columns( + auto_calculation => { type => 'boolean', not_null => 1 }, description => { type => 'text' }, description_long => { type => 'text' }, id => { type => 'integer', not_null => 1, sequence => 'id' },