X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/efb9a24f2252104ab4af5c25334119d7c5c70a8c..f63bc3db2b0dc62707d4fc75d882e68c06bbcec5:/SL/DB/MetaSetup/CsvImportReport.pm diff --git a/SL/DB/MetaSetup/CsvImportReport.pm b/SL/DB/MetaSetup/CsvImportReport.pm index 3a8433c51..6b7d29612 100644 --- a/SL/DB/MetaSetup/CsvImportReport.pm +++ b/SL/DB/MetaSetup/CsvImportReport.pm @@ -4,7 +4,7 @@ package SL::DB::CsvImportReport; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('csv_import_reports'); @@ -15,6 +15,7 @@ __PACKAGE__->meta->columns( numrows => { type => 'integer', not_null => 1 }, profile_id => { type => 'integer', not_null => 1 }, session_id => { type => 'text', not_null => 1 }, + test_mode => { type => 'boolean', not_null => 1 }, type => { type => 'text', not_null => 1 }, );