X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/3eb3d1b144adb92e62de08e67dc6ff3d39bf7483..2ea07c13e111b88478827bf621d41df3eec19dac:/SL/DB/MetaSetup/FollowUp.pm diff --git a/SL/DB/MetaSetup/FollowUp.pm b/SL/DB/MetaSetup/FollowUp.pm index fc461512c..b9119fb83 100644 --- a/SL/DB/MetaSetup/FollowUp.pm +++ b/SL/DB/MetaSetup/FollowUp.pm @@ -4,7 +4,7 @@ package SL::DB::FollowUp; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('follow_ups'); @@ -24,12 +24,12 @@ __PACKAGE__->meta->primary_key_columns([ 'id' ]); __PACKAGE__->meta->allow_inline_column_values(1); __PACKAGE__->meta->foreign_keys( - employee => { + created_by => { class => 'SL::DB::Employee', key_columns => { created_by => 'id' }, }, - employee_obj => { + created_for => { class => 'SL::DB::Employee', key_columns => { created_for_user => 'id' }, },