X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FRequirementSpec.pm;h=ce25749d74c064d9d3d7ee8308f143c45f59d1dc;hb=3f90c9cac7fea1568957718eba46dfe5f9a621ce;hp=448816a88d21124d8e3eab7d940eb5a3a7d26af1;hpb=7e0130b0bd535dfceba01fe3f4eb6a552ab464a7;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/RequirementSpec.pm b/SL/DB/MetaSetup/RequirementSpec.pm index 448816a88..ce25749d7 100644 --- a/SL/DB/MetaSetup/RequirementSpec.pm +++ b/SL/DB/MetaSetup/RequirementSpec.pm @@ -4,7 +4,7 @@ package SL::DB::RequirementSpec; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('requirement_specs'); @@ -22,7 +22,7 @@ __PACKAGE__->meta->columns( status_id => { type => 'integer' }, 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' }, );