X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/f5c454e3855012bdb1928f3e4c4964403d4d8163..bce4bcf8584846bdfc22c9d78e1661bd425ebe9f:/SL/DB/MetaSetup/TaxZone.pm diff --git a/SL/DB/MetaSetup/TaxZone.pm b/SL/DB/MetaSetup/TaxZone.pm index 993d28f88..0ca5fd810 100644 --- a/SL/DB/MetaSetup/TaxZone.pm +++ b/SL/DB/MetaSetup/TaxZone.pm @@ -4,13 +4,14 @@ package SL::DB::TaxZone; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('tax_zones'); __PACKAGE__->meta->columns( description => { type => 'text' }, id => { type => 'integer', not_null => 1, sequence => 'id' }, + obsolete => { type => 'boolean', default => 'false' }, sortkey => { type => 'integer', not_null => 1 }, );