X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/b8b112a39bd601b0bc717646d78de470631da22a..d1f44c84d990f57982854c6a4716c0f233f45bca:/SL/DB/MetaSetup/CsvImportReportStatus.pm diff --git a/SL/DB/MetaSetup/CsvImportReportStatus.pm b/SL/DB/MetaSetup/CsvImportReportStatus.pm index 89f02a417..2bca42599 100644 --- a/SL/DB/MetaSetup/CsvImportReportStatus.pm +++ b/SL/DB/MetaSetup/CsvImportReportStatus.pm @@ -4,13 +4,13 @@ package SL::DB::CsvImportReportStatus; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('csv_import_report_status'); __PACKAGE__->meta->columns( - id => { type => 'serial', not_null => 1 }, csv_import_report_id => { type => 'integer', not_null => 1 }, + id => { type => 'serial', not_null => 1 }, row => { type => 'integer', not_null => 1 }, type => { type => 'text', not_null => 1 }, value => { type => 'text' }, @@ -25,7 +25,5 @@ __PACKAGE__->meta->foreign_keys( }, ); -# __PACKAGE__->meta->initialize; - 1; ;