X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FProjectPhaseParticipant.pm;h=bd2e2caad25d45ebc0f9434fb89372cf004229f2;hb=b269674b6b0e99818c3643d4fc3271a8ce83b8c6;hp=83789803210ef802cfe474fafa7c4caeb758b08a;hpb=57d97e2ba47a46a15a71b1fcbdd4d26bfc5205a3;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/ProjectPhaseParticipant.pm b/SL/DB/MetaSetup/ProjectPhaseParticipant.pm index 837898032..bd2e2caad 100644 --- a/SL/DB/MetaSetup/ProjectPhaseParticipant.pm +++ b/SL/DB/MetaSetup/ProjectPhaseParticipant.pm @@ -4,12 +4,12 @@ package SL::DB::ProjectPhaseParticipant; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('project_phase_participants'); __PACKAGE__->meta->columns( - cost_per_hour => { type => 'numeric', precision => 5, scale => 15 }, + cost_per_hour => { type => 'numeric', precision => 15, scale => 5 }, employee_id => { type => 'integer', not_null => 1 }, id => { type => 'serial', not_null => 1 }, itime => { type => 'timestamp', default => 'now()' },