X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/a5ba22d29e683629d731fc0bfdfb72719e59a0b9..66c08b6472a2467444192dbfed35e9f30f7c910d:/SL/DB/MetaSetup/AuthGroupRight.pm diff --git a/SL/DB/MetaSetup/AuthGroupRight.pm b/SL/DB/MetaSetup/AuthGroupRight.pm index 0cf5d7211..7c98d2ab2 100644 --- a/SL/DB/MetaSetup/AuthGroupRight.pm +++ b/SL/DB/MetaSetup/AuthGroupRight.pm @@ -8,6 +8,7 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->setup( table => 'group_rights', + schema => 'auth', columns => [ group_id => { type => 'integer', not_null => 1 }, @@ -16,6 +17,13 @@ __PACKAGE__->meta->setup( ], primary_key_columns => [ 'group_id', 'right' ], + + foreign_keys => [ + group => { + class => 'SL::DB::AuthGroup', + key_columns => { group_id => 'id' }, + }, + ], ); 1;