X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FCsvImportReport.pm;h=9b2fc3972d565d536d5c1940d9c66e19d9e21c3c;hb=a67ad20f388cd35487a7a9d46a003e39e1f402aa;hp=23d411b9636ebb42a35c3f6568d4f47eaaa24be1;hpb=76235d2d75822152db0bce04ab263da3a669482b;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/CsvImportReport.pm b/SL/DB/MetaSetup/CsvImportReport.pm index 23d411b96..9b2fc3972 100644 --- a/SL/DB/MetaSetup/CsvImportReport.pm +++ b/SL/DB/MetaSetup/CsvImportReport.pm @@ -9,12 +9,12 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('csv_import_reports'); __PACKAGE__->meta->columns( + file => { type => 'text', not_null => 1 }, id => { type => 'serial', not_null => 1 }, - session_id => { type => 'text', not_null => 1 }, + numrows => { type => 'integer', not_null => 1 }, profile_id => { type => 'integer', not_null => 1 }, + session_id => { type => 'text', not_null => 1 }, type => { type => 'text', not_null => 1 }, - file => { type => 'text', not_null => 1 }, - numrows => { type => 'integer', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); @@ -26,7 +26,5 @@ __PACKAGE__->meta->foreign_keys( }, ); -# __PACKAGE__->meta->initialize; - 1; ;