X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FAuthSession.pm;fp=SL%2FDB%2FMetaSetup%2FAuthSession.pm;h=84f0f677aab9a734d31744a82689aa90edcf88df;hp=0000000000000000000000000000000000000000;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44 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; +;