X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/dfe4581db56e5f0b60c53afae7d33987408c6e53..e3c9027e366887b290b0e7e2667d4baba564f070:/SL/DB/MetaSetup/RequirementSpecPart.pm diff --git a/SL/DB/MetaSetup/RequirementSpecPart.pm b/SL/DB/MetaSetup/RequirementSpecPart.pm index b29ae4204..c4627ae5a 100644 --- a/SL/DB/MetaSetup/RequirementSpecPart.pm +++ b/SL/DB/MetaSetup/RequirementSpecPart.pm @@ -9,8 +9,8 @@ use base 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 },