X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FTax.pm;h=55aba86bc4157018f190922966fec6fcbb51b19a;hb=5d1790289c565ace01143d524538bd505859a57c;hp=a3be4005e12a75bb11d1ea4d07bca58e9fc36be8;hpb=a87694dc525b4eabff11029f1e5401621e2bd3bc;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Tax.pm b/SL/DB/MetaSetup/Tax.pm index a3be4005e..55aba86bc 100644 --- a/SL/DB/MetaSetup/Tax.pm +++ b/SL/DB/MetaSetup/Tax.pm @@ -4,7 +4,7 @@ package SL::DB::Tax; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('tax'); @@ -19,7 +19,6 @@ __PACKAGE__->meta->columns( skonto_sales_chart_id => { type => 'integer' }, taxdescription => { type => 'text', not_null => 1 }, taxkey => { type => 'integer', not_null => 1 }, - taxnumber => { type => 'text' }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); @@ -41,11 +40,6 @@ __PACKAGE__->meta->foreign_keys( class => 'SL::DB::Chart', key_columns => { skonto_sales_chart_id => 'id' }, }, - - skonto_sales_chart_obj => { - class => 'SL::DB::Chart', - key_columns => { skonto_sales_chart_id => 'id' }, - }, ); 1;