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::ProjectPhaseParticipant;
7 use base qw(SL::DB::Object);
9 __PACKAGE__->meta->table('project_phase_participants');
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_phase_id => { type => 'integer', not_null => 1 },
19 project_role_id => { type => 'integer', not_null => 1 },
22 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
24 __PACKAGE__->meta->allow_inline_column_values(1);
26 __PACKAGE__->meta->foreign_keys(
28 class => 'SL::DB::Employee',
29 key_columns => { employee_id => 'id' },
33 class => 'SL::DB::ProjectPhase',
34 key_columns => { project_phase_id => 'id' },
38 class => 'SL::DB::ProjectRole',
39 key_columns => { project_role_id => 'id' },