epic-ts
[kivitendo-erp.git] / SL / DB / MetaSetup / FollowUp.pm
index fc46151..b9119fb 100644 (file)
@@ -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' },
   },