X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FTaxzoneChart.pm;h=64b1494d79fd6348f52939a09a2c4cdcedae6e44;hb=63cb5b41d9b06d0b7f522ef154dd9f57ea428bae;hp=f0cd6dcf1cc8fbcd363d67d894b907bcf1d19ee1;hpb=b989d7cfb4bd8de5c3e290b8df0519ad34d5dd0c;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/TaxzoneChart.pm b/SL/DB/MetaSetup/TaxzoneChart.pm index f0cd6dcf1..64b1494d7 100644 --- a/SL/DB/MetaSetup/TaxzoneChart.pm +++ b/SL/DB/MetaSetup/TaxzoneChart.pm @@ -4,17 +4,17 @@ package SL::DB::TaxzoneChart; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('taxzone_charts'); __PACKAGE__->meta->columns( - id => { type => 'serial', not_null => 1 }, - taxzone_id => { type => 'integer', not_null => 1 }, buchungsgruppen_id => { type => 'integer', not_null => 1 }, - income_accno_id => { type => 'integer', not_null => 1 }, expense_accno_id => { type => 'integer', not_null => 1 }, + id => { type => 'serial', not_null => 1 }, + income_accno_id => { type => 'integer', not_null => 1 }, itime => { type => 'timestamp', default => 'now()' }, + taxzone_id => { type => 'integer', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); @@ -36,9 +36,12 @@ __PACKAGE__->meta->foreign_keys( class => 'SL::DB::Chart', key_columns => { income_accno_id => 'id' }, }, -); -# __PACKAGE__->meta->initialize; + taxzone => { + class => 'SL::DB::TaxZone', + key_columns => { taxzone_id => 'id' }, + }, +); 1; ;