X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44..53593baa211863fbf66540cf1bcc36c8fb37257f:/SL/DB/MetaSetup/AuthSession.pm diff --git a/SL/DB/MetaSetup/AuthSession.pm b/SL/DB/MetaSetup/AuthSession.pm new file mode 100644 index 000000000..84f0f677a --- /dev/null +++ b/SL/DB/MetaSetup/AuthSession.pm @@ -0,0 +1,22 @@ +# This file has been auto-generated. Do not modify it; it will be overwritten +# by rose_auto_create_model.pl automatically. +package SL::DB::AuthSession; + +use strict; + +use parent qw(SL::DB::Object); + +__PACKAGE__->meta->table('session'); +__PACKAGE__->meta->schema('auth'); + +__PACKAGE__->meta->columns( + api_token => { type => 'text' }, + id => { type => 'text', not_null => 1 }, + ip_address => { type => 'scalar' }, + mtime => { type => 'timestamp' }, +); + +__PACKAGE__->meta->primary_key_columns([ 'id' ]); + +1; +;