X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FCsvImportReport.pm;h=6b7d29612823a96b45694928891cf9dbbd1f39ef;hb=d4925a8b60f04674885e30d9316dc0263f8b9a84;hp=cdc4f77e5119201dffcc825293aadead42f28196;hpb=67643d0386e7ad051009af639cada8a5ad60d1ea;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/CsvImportReport.pm b/SL/DB/MetaSetup/CsvImportReport.pm index cdc4f77e5..6b7d29612 100644 --- a/SL/DB/MetaSetup/CsvImportReport.pm +++ b/SL/DB/MetaSetup/CsvImportReport.pm @@ -4,27 +4,28 @@ package SL::DB::CsvImportReport; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); -__PACKAGE__->meta->setup( - table => 'csv_import_reports', +__PACKAGE__->meta->table('csv_import_reports'); - columns => [ - id => { type => 'serial', not_null => 1 }, - session_id => { type => 'text', not_null => 1 }, - profile_id => { type => 'integer', not_null => 1 }, - type => { type => 'text', not_null => 1 }, - file => { type => 'text', not_null => 1 }, - ], +__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 }, +); - primary_key_columns => [ 'id' ], +__PACKAGE__->meta->primary_key_columns([ 'id' ]); - foreign_keys => [ - profile => { - class => 'SL::DB::CsvImportProfile', - key_columns => { profile_id => 'id' }, - }, - ], +__PACKAGE__->meta->foreign_keys( + profile => { + class => 'SL::DB::CsvImportProfile', + key_columns => { profile_id => 'id' }, + }, ); 1;