X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FPricegroup.pm;fp=SL%2FDB%2FMetaSetup%2FPricegroup.pm;h=0f35952991d142fb831f26d25f8af364c2195bf2;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hp=60a7f20382fd44d35ad22f1e2aae8fe948205ce3;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44;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' ]);