Order: Vorbelegte E-Mail-Texte für Fall Ansprechpartner aktiviert
[kivitendo-erp.git] / SL / DB / MetaSetup / AssortmentItem.pm
index 5cedfbf..8bd1611 100644 (file)
@@ -10,11 +10,12 @@ __PACKAGE__->meta->table('assortment_items');
 
 __PACKAGE__->meta->columns(
   assortment_id => { type => 'integer', not_null => 1 },
+  charge        => { type => 'boolean', default => 'true' },
   itime         => { type => 'timestamp', default => 'now()' },
   mtime         => { type => 'timestamp' },
   parts_id      => { type => 'integer', not_null => 1 },
   position      => { type => 'integer', not_null => 1 },
-  qty           => { type => 'float', not_null => 1, scale => 4 },
+  qty           => { type => 'float', not_null => 1, precision => 4, scale => 4 },
   unit          => { type => 'varchar', length => 20, not_null => 1 },
 );