X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/b8b112a39bd601b0bc717646d78de470631da22a..e214accccd89a9c8:/SL/DB/MetaSetup/SchemaInfo.pm?ds=sidebyside 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; ;