X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/89360aadb2c3e0854a2815e5d0ed8a9efd1c5889..38bb9635fde8c2821c23da931bcb6acba8e4b8be:/SL/DB/MetaSetup/RequirementSpecPart.pm 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 },