X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/687a09d87aee39ab016bf2ec410da006f5044bc4..38bb9635fde8c2821c23da931bcb6acba8e4b8be:/SL/DB/MetaSetup/RequirementSpecItem.pm diff --git a/SL/DB/MetaSetup/RequirementSpecItem.pm b/SL/DB/MetaSetup/RequirementSpecItem.pm index 63e4eecda..50c167ded 100644 --- a/SL/DB/MetaSetup/RequirementSpecItem.pm +++ b/SL/DB/MetaSetup/RequirementSpecItem.pm @@ -4,7 +4,7 @@ package SL::DB::RequirementSpecItem; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('requirement_spec_items'); @@ -24,7 +24,8 @@ __PACKAGE__->meta->columns( position => { type => 'integer', not_null => 1 }, requirement_spec_id => { type => 'integer', not_null => 1 }, risk_id => { type => 'integer' }, - time_estimation => { type => 'numeric', default => '0', not_null => 1, precision => 2, scale => 12 }, + sellprice_factor => { type => 'numeric', default => 1, precision => 10, scale => 5 }, + time_estimation => { type => 'numeric', default => '0', not_null => 1, precision => 12, scale => 2 }, title => { type => 'text' }, );