X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FRequirementSpecPart.pm;h=e57fee1e0e153a3892695aa374acb745f1ac1864;hb=c59e85c3a7538b1279e25022a6cf431ca1dee700;hp=b29ae420438d1084469b3fe9c1fe9ef883f47b02;hpb=89360aadb2c3e0854a2815e5d0ed8a9efd1c5889;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/RequirementSpecPart.pm b/SL/DB/MetaSetup/RequirementSpecPart.pm index b29ae4204..e57fee1e0 100644 --- a/SL/DB/MetaSetup/RequirementSpecPart.pm +++ b/SL/DB/MetaSetup/RequirementSpecPart.pm @@ -4,13 +4,13 @@ package SL::DB::RequirementSpecPart; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('requirement_spec_parts'); __PACKAGE__->meta->columns( - id => { type => 'serial', not_null => 1 }, description => { type => 'text', not_null => 1 }, + id => { type => 'serial', not_null => 1 }, part_id => { type => 'integer', not_null => 1 }, position => { type => 'integer', not_null => 1 }, qty => { type => 'numeric', not_null => 1, precision => 15, scale => 5 },