0a26083f861cd4d2759041de4bec445ceb833fe5
[kivitendo-erp.git] / SL / DB / MetaSetup / FollowUpAccess.pm
1 # This file has been auto-generated. Do not modify it; it will be overwritten
2 # by rose_auto_create_model.pl automatically.
3 package SL::DB::FollowUpAccess;
4
5 use strict;
6
7 use base qw(SL::DB::Object);
8
9 __PACKAGE__->meta->setup(
10   table   => 'follow_up_access',
11
12   columns => [
13     who  => { type => 'integer', not_null => 1 },
14     what => { type => 'integer', not_null => 1 },
15     id   => { type => 'serial', not_null => 1 },
16   ],
17
18   primary_key_columns => [ 'id' ],
19
20   foreign_keys => [
21     employee => {
22       class       => 'SL::DB::Employee',
23       key_columns => { who => 'id' },
24     },
25
26     employee_obj => {
27       class       => 'SL::DB::Employee',
28       key_columns => { what => 'id' },
29     },
30   ],
31 );
32
33 1;
34 ;