X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FTaxZone.pm;h=0ca5fd810b41dd5986ab740b45a2a31341622145;hb=842d6c44252d2294a4b65f2212f141d9290f7100;hp=0190c6367a915776dd77c573c319a73f5c95915e;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/TaxZone.pm b/SL/DB/MetaSetup/TaxZone.pm index 0190c6367..0ca5fd810 100644 --- a/SL/DB/MetaSetup/TaxZone.pm +++ b/SL/DB/MetaSetup/TaxZone.pm @@ -4,18 +4,18 @@ 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( - id => { type => 'integer', not_null => 1 }, description => { type => 'text' }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, + obsolete => { type => 'boolean', default => 'false' }, + sortkey => { type => 'integer', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); -# __PACKAGE__->meta->initialize; - 1; ;