epic-s6ts
[kivitendo-erp.git] / SL / DB / MetaSetup / ProjectParticipant.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::ProjectParticipant;
4
5 use strict;
6
7 use parent qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('project_participants');
10
11 __PACKAGE__->meta->columns(
12   cost_per_hour   => { type => 'numeric', precision => 15, scale => 5 },
13   employee_id     => { type => 'integer', not_null => 1 },
14   id              => { type => 'serial', not_null => 1 },
15   itime           => { type => 'timestamp', default => 'now()' },
16   minutes         => { type => 'integer', default => '0', not_null => 1 },
17   mtime           => { type => 'timestamp' },
18   project_id      => { type => 'integer', not_null => 1 },
19   project_role_id => { type => 'integer', not_null => 1 },
20 );
21
22 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
23
24 __PACKAGE__->meta->allow_inline_column_values(1);
25
26 __PACKAGE__->meta->foreign_keys(
27   employee => {
28     class       => 'SL::DB::Employee',
29     key_columns => { employee_id => 'id' },
30   },
31
32   project => {
33     class       => 'SL::DB::Project',
34     key_columns => { project_id => 'id' },
35   },
36
37   project_role => {
38     class       => 'SL::DB::ProjectRole',
39     key_columns => { project_role_id => 'id' },
40   },
41 );
42
43 1;
44 ;