X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/3eb3d1b144adb92e62de08e67dc6ff3d39bf7483..bcc996e65643:/SL/DB/MetaSetup/CsvImportReport.pm diff --git a/SL/DB/MetaSetup/CsvImportReport.pm b/SL/DB/MetaSetup/CsvImportReport.pm index 9b2fc3972..6b7d29612 100644 --- a/SL/DB/MetaSetup/CsvImportReport.pm +++ b/SL/DB/MetaSetup/CsvImportReport.pm @@ -4,16 +4,18 @@ package SL::DB::CsvImportReport; use strict; -use base qw(SL::DB::Object); +use parent 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 }, + numheaders => { type => 'integer', not_null => 1 }, 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 }, );