X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FPricegroup.pm;h=0f35952991d142fb831f26d25f8af364c2195bf2;hb=b5b366c932e2a8118cafa0d27432fa268099d419;hp=176d4267ea7c996e7aa176a5d2c9f4ea81be6903;hpb=3eb3d1b144adb92e62de08e67dc6ff3d39bf7483;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Pricegroup.pm b/SL/DB/MetaSetup/Pricegroup.pm index 176d4267e..0f3595299 100644 --- a/SL/DB/MetaSetup/Pricegroup.pm +++ b/SL/DB/MetaSetup/Pricegroup.pm @@ -4,13 +4,15 @@ package SL::DB::Pricegroup; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('pricegroup'); __PACKAGE__->meta->columns( id => { type => 'integer', not_null => 1, sequence => 'id' }, + obsolete => { type => 'boolean', default => 'false' }, pricegroup => { type => 'text', not_null => 1 }, + sortkey => { type => 'integer', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]);