X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FRequirementSpec.pm;h=ce25749d74c064d9d3d7ee8308f143c45f59d1dc;hb=4b4f09f600529e048be9e9d21357d1840759bdaa;hp=c13400c23f1bed6711647aa94c5c17c973aa6d49;hpb=9cddaf376822b4229457212a27d5d98958f11368;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/RequirementSpec.pm b/SL/DB/MetaSetup/RequirementSpec.pm index c13400c23..ce25749d7 100644 --- a/SL/DB/MetaSetup/RequirementSpec.pm +++ b/SL/DB/MetaSetup/RequirementSpec.pm @@ -4,13 +4,13 @@ package SL::DB::RequirementSpec; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('requirement_specs'); __PACKAGE__->meta->columns( customer_id => { type => 'integer' }, - hourly_rate => { type => 'numeric', default => '0', not_null => 1, precision => 2, scale => 8 }, + hourly_rate => { type => 'numeric', default => '0', not_null => 1, precision => 8, scale => 2 }, id => { type => 'serial', not_null => 1 }, is_template => { type => 'boolean', default => 'false' }, itime => { type => 'timestamp', default => 'now()' }, @@ -20,9 +20,9 @@ __PACKAGE__->meta->columns( previous_section_number => { type => 'integer', not_null => 1 }, project_id => { type => 'integer' }, status_id => { type => 'integer' }, - time_estimation => { type => 'numeric', default => '0', not_null => 1, precision => 2, scale => 12 }, + time_estimation => { type => 'numeric', default => '0', not_null => 1, precision => 12, scale => 2 }, title => { type => 'text', not_null => 1 }, - type_id => { type => 'integer' }, + type_id => { type => 'integer', not_null => 1 }, working_copy_id => { type => 'integer' }, );