X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/1600ef672b02029ef3bb2ab940c0954820ef47b3..03f5aaa3c601956206f0c2a142c1e19f6981b326:/SL/DB/MetaSetup/ProjectRole.pm diff --git a/SL/DB/MetaSetup/ProjectRole.pm b/SL/DB/MetaSetup/ProjectRole.pm new file mode 100644 index 000000000..f9476a033 --- /dev/null +++ b/SL/DB/MetaSetup/ProjectRole.pm @@ -0,0 +1,25 @@ +# This file has been auto-generated. Do not modify it; it will be overwritten +# by rose_auto_create_model.pl automatically. +package SL::DB::ProjectRole; + +use strict; + +use base qw(SL::DB::Object); + +__PACKAGE__->meta->setup( + table => 'project_roles', + + columns => [ + id => { type => 'serial', not_null => 1 }, + name => { type => 'text', not_null => 1 }, + description => { type => 'text', not_null => 1 }, + position => { type => 'integer', not_null => 1 }, + itime => { type => 'timestamp', default => '06.05.2013 14:26:18.81159' }, + mtime => { type => 'timestamp' }, + ], + + primary_key_columns => [ 'id' ], +); + +1; +;