X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FSchemaInfo.pm;h=0518867741a0bf71021b04defd7074c4796cea89;hb=766f5705ecb9cd56adfbffd94c871959bb64c6fd;hp=9eddb4bf7c71440dfb17ac4f38cdd18ae8a4d7a6;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/SchemaInfo.pm b/SL/DB/MetaSetup/SchemaInfo.pm index 9eddb4bf7..051886774 100644 --- a/SL/DB/MetaSetup/SchemaInfo.pm +++ b/SL/DB/MetaSetup/SchemaInfo.pm @@ -9,16 +9,14 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('schema_info'); __PACKAGE__->meta->columns( - tag => { type => 'text', not_null => 1 }, - login => { type => 'text' }, itime => { type => 'timestamp', default => 'now()' }, + login => { type => 'text' }, + tag => { type => 'text', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'tag' ]); __PACKAGE__->meta->allow_inline_column_values(1); -# __PACKAGE__->meta->initialize; - 1; ;