X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FAssortmentItem.pm;h=8bd1611b59033f46d8fc1e8d6d6fef157cfdca96;hb=60dcd6c0c1abb2e06d31c4d46863fc09556ccd7b;hp=5cedfbfa913d31bd7d10e0d27f91ebf83eb4e8d6;hpb=f2b44f136e8193bbda860c377eeb04cd932b713b;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/AssortmentItem.pm b/SL/DB/MetaSetup/AssortmentItem.pm index 5cedfbfa9..8bd1611b5 100644 --- a/SL/DB/MetaSetup/AssortmentItem.pm +++ b/SL/DB/MetaSetup/AssortmentItem.pm @@ -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 }, );