X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FPartClassification.pm;h=4fbd0222d44b82afe18add19e8df3f9e494de604;hb=842d6c44252d2294a4b65f2212f141d9290f7100;hp=0377ee557e7df08d5b14a7e3720f5c5596872860;hpb=219d88ab03186a74e5dd474175e49bd74dacf15f;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/PartClassification.pm b/SL/DB/MetaSetup/PartClassification.pm index 0377ee557..4fbd0222d 100644 --- a/SL/DB/MetaSetup/PartClassification.pm +++ b/SL/DB/MetaSetup/PartClassification.pm @@ -12,9 +12,9 @@ __PACKAGE__->meta->columns( abbreviation => { type => 'text' }, description => { type => 'text' }, id => { type => 'serial', not_null => 1 }, - report_separate => { type => 'boolean', default => 'false' }, - 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' ]);