X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FPricegroup.pm;h=0f35952991d142fb831f26d25f8af364c2195bf2;hb=5c0b85694a2586940933285a6547910eb17db02f;hp=60a7f20382fd44d35ad22f1e2aae8fe948205ce3;hpb=2ea07c13e111b88478827bf621d41df3eec19dac;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Pricegroup.pm b/SL/DB/MetaSetup/Pricegroup.pm index 60a7f2038..0f3595299 100644 --- a/SL/DB/MetaSetup/Pricegroup.pm +++ b/SL/DB/MetaSetup/Pricegroup.pm @@ -10,7 +10,9 @@ __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' ]);