MetaSetup-Update durch Rose-Script mit --all
[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 base qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('project_participants');
10
11 __PACKAGE__->meta->columns(
12   cost_per_hour   => { type => 'numeric', precision => 5, scale => 15 },
13   employee_id     => { type => 'integer', not_null => 1 },
14   id              => { type => 'serial', not_null => 1 },
15   itime           => { type => 'timestamp', default => '2013-05-08 09:11:09.704126' },
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->foreign_keys(
25   employee => {
26     class       => 'SL::DB::Employee',
27     key_columns => { employee_id => 'id' },
28   },
29
30   project => {
31     class       => 'SL::DB::Project',
32     key_columns => { project_id => 'id' },
33   },
34
35   project_role => {
36     class       => 'SL::DB::ProjectRole',
37     key_columns => { project_role_id => 'id' },
38   },
39 );
40
41 1;
42 ;