X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FRequirementSpecItem.pm;h=50c167deda61d437c4d8fd7c192ac52f2afafece;hb=3782a90c336bc6c506f572e607c8526cb5e79ea3;hp=79c1ca0b28a0eef08d5ed7a8f4ea458779126074;hpb=766f5705ecb9cd56adfbffd94c871959bb64c6fd;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/RequirementSpecItem.pm b/SL/DB/MetaSetup/RequirementSpecItem.pm index 79c1ca0b2..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,6 +24,7 @@ __PACKAGE__->meta->columns( position => { type => 'integer', not_null => 1 }, requirement_spec_id => { type => 'integer', not_null => 1 }, risk_id => { type => 'integer' }, + 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' }, );