X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FTaxKey.pm;h=a5bb5ff36237ef0205b8f38f80b73f94caa885ed;hb=60dcd6c0c1abb2e06d31c4d46863fc09556ccd7b;hp=4265037b51e8e4844fb7a6cef32713194d1c6c38;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/TaxKey.pm b/SL/DB/MetaSetup/TaxKey.pm index 4265037b5..a5bb5ff36 100644 --- a/SL/DB/MetaSetup/TaxKey.pm +++ b/SL/DB/MetaSetup/TaxKey.pm @@ -4,17 +4,17 @@ package SL::DB::TaxKey; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('taxkeys'); __PACKAGE__->meta->columns( - id => { type => 'integer', not_null => 1, sequence => 'id' }, chart_id => { type => 'integer', not_null => 1 }, - tax_id => { type => 'integer', not_null => 1 }, - taxkey_id => { type => 'integer', not_null => 1 }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, pos_ustva => { type => 'integer' }, startdate => { type => 'date', not_null => 1 }, + tax_id => { type => 'integer', not_null => 1 }, + taxkey_id => { type => 'integer', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); @@ -33,7 +33,5 @@ __PACKAGE__->meta->foreign_keys( }, ); -# __PACKAGE__->meta->initialize; - 1; ;