X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/2ea07c13e111b88478827bf621d41df3eec19dac..e73f7350574cb4e46db4a4d6ad5cdaa075806489:/SL/DB/MetaSetup/Pricegroup.pm 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' ]);