X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/078c976936963bc3339c6c4438bda54a40a144f4..c65e8fcc568f54001e277a8d7d8d2bd21cf80f4d:/SL/DB/MetaSetup/TaxzoneChart.pm diff --git a/SL/DB/MetaSetup/TaxzoneChart.pm b/SL/DB/MetaSetup/TaxzoneChart.pm index 3bcdbceee..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' ]);