]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/DB/MetaSetup/PartClassification.pm
Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / SL / DB / MetaSetup / PartClassification.pm
index 676fa2148d9717b6e3e5bc686d1c4d734cc589f3..4fbd0222d44b82afe18add19e8df3f9e494de604 100644 (file)
@@ -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' ]);