X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FTaxZone.pm;h=0ca5fd810b41dd5986ab740b45a2a31341622145;hb=97a6f6d623a9810e1d324f44a5f8bcd12294f5d3;hp=b294531574a33d01f0a20ea668cc822e501d0f05;hpb=3eb3d1b144adb92e62de08e67dc6ff3d39bf7483;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/TaxZone.pm b/SL/DB/MetaSetup/TaxZone.pm index b29453157..0ca5fd810 100644 --- a/SL/DB/MetaSetup/TaxZone.pm +++ b/SL/DB/MetaSetup/TaxZone.pm @@ -4,13 +4,15 @@ 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 }, + 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' ]);