X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/1600ef672b02029ef3bb2ab940c0954820ef47b3..03f5aaa3c601956206f0c2a142c1e19f6981b326:/SL/DB/MetaSetup/ProjectPhaseParticipant.pm diff --git a/SL/DB/MetaSetup/ProjectPhaseParticipant.pm b/SL/DB/MetaSetup/ProjectPhaseParticipant.pm new file mode 100644 index 000000000..be9749542 --- /dev/null +++ b/SL/DB/MetaSetup/ProjectPhaseParticipant.pm @@ -0,0 +1,39 @@ +# This file has been auto-generated. Do not modify it; it will be overwritten +# by rose_auto_create_model.pl automatically. +package SL::DB::ProjectPhaseParticipant; + +use strict; + +use base qw(SL::DB::Object); + +__PACKAGE__->meta->setup( + table => 'project_phase_participants', + + columns => [ + id => { type => 'serial', not_null => 1 }, + project_phase_id => { type => 'integer', not_null => 1 }, + employee_id => { type => 'integer', not_null => 1 }, + project_role_id => { type => 'integer', not_null => 1 }, + minutes => { type => 'integer', default => '0', not_null => 1 }, + cost_per_hour => { type => 'numeric', precision => 5, scale => 15 }, + itime => { type => 'timestamp', default => '06.05.2013 14:26:18.81159' }, + mtime => { type => 'timestamp' }, + ], + + primary_key_columns => [ 'id' ], + + foreign_keys => [ + employee => { + class => 'SL::DB::Employee', + key_columns => { employee_id => 'id' }, + }, + + project_role => { + class => 'SL::DB::ProjectRole', + key_columns => { project_role_id => 'id' }, + }, + ], +); + +1; +;