X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FCsvImportReport.pm;h=1959132121404f3f39314efbae76ab9a04705974;hb=0310ce713a5de3a825e8e8f7b3a9a0476d9ee7f1;hp=9b2fc3972d565d536d5c1940d9c66e19d9e21c3c;hpb=3eb3d1b144adb92e62de08e67dc6ff3d39bf7483;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/CsvImportReport.pm b/SL/DB/MetaSetup/CsvImportReport.pm index 9b2fc3972..195913212 100644 --- a/SL/DB/MetaSetup/CsvImportReport.pm +++ b/SL/DB/MetaSetup/CsvImportReport.pm @@ -4,13 +4,14 @@ 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 },