X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FDB%2FMetaSetup%2FPartClassification.pm;h=4fbd0222d44b82afe18add19e8df3f9e494de604;hb=9dfd320ff258071e3ad78dd6cf2d76e215efd4f7;hp=676fa2148d9717b6e3e5bc686d1c4d734cc589f3;hpb=65d2537d658b99b005a18c6663bc1293b41a1d83;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/PartClassification.pm b/SL/DB/MetaSetup/PartClassification.pm index 676fa2148..4fbd0222d 100644 --- a/SL/DB/MetaSetup/PartClassification.pm +++ b/SL/DB/MetaSetup/PartClassification.pm @@ -12,8 +12,9 @@ __PACKAGE__->meta->columns( abbreviation => { type => 'text' }, description => { type => 'text' }, id => { type => 'serial', not_null => 1 }, - used_for_purchase => { type => 'boolean', default => 'true' }, - used_for_sale => { type => 'boolean', default => 'true' }, + report_separate => { type => 'boolean', default => 'false', not_null => 1 }, + used_for_purchase => { type => 'boolean', default => 'true', not_null => 1 }, + used_for_sale => { type => 'boolean', default => 'true', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]);