X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44..53593baa211863fbf66540cf1bcc36c8fb37257f:/SL/DB/MetaSetup/AuthSessionContent.pm diff --git a/SL/DB/MetaSetup/AuthSessionContent.pm b/SL/DB/MetaSetup/AuthSessionContent.pm new file mode 100644 index 000000000..fc3638102 --- /dev/null +++ b/SL/DB/MetaSetup/AuthSessionContent.pm @@ -0,0 +1,29 @@ +# This file has been auto-generated. Do not modify it; it will be overwritten +# by rose_auto_create_model.pl automatically. +package SL::DB::AuthSessionContent; + +use strict; + +use parent qw(SL::DB::Object); + +__PACKAGE__->meta->table('session_content'); +__PACKAGE__->meta->schema('auth'); + +__PACKAGE__->meta->columns( + auto_restore => { type => 'boolean' }, + sess_key => { type => 'text', not_null => 1 }, + sess_value => { type => 'text' }, + session_id => { type => 'text', not_null => 1 }, +); + +__PACKAGE__->meta->primary_key_columns([ 'session_id', 'sess_key' ]); + +__PACKAGE__->meta->foreign_keys( + session => { + class => 'SL::DB::AuthSession', + key_columns => { session_id => 'id' }, + }, +); + +1; +;