X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FProjectParticipant.pm;h=5704af11d464867634d62612cdf5c7660a01e50b;hb=4270e94242a347cfd105f876d52d1e38b5ca6a19;hp=92dbd1a14de75512de97371a66b4ed10dc027016;hpb=57d97e2ba47a46a15a71b1fcbdd4d26bfc5205a3;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/ProjectParticipant.pm b/SL/DB/MetaSetup/ProjectParticipant.pm index 92dbd1a14..5704af11d 100644 --- a/SL/DB/MetaSetup/ProjectParticipant.pm +++ b/SL/DB/MetaSetup/ProjectParticipant.pm @@ -4,12 +4,12 @@ package SL::DB::ProjectParticipant; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('project_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()' },