X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/f2b44f136e8193bbda860c377eeb04cd932b713b..38bb9635fde8c2821c23da931bcb6acba8e4b8be:/SL/DB/MetaSetup/AssortmentItem.pm 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 }, );