X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FCsvImportReportStatus.pm;h=2bca42599a1ef4f3b87a1b44ffc3c4c0b9630f33;hb=0c564932ee0502911972f31f33a6041cfab5e98b;hp=89f02a417ebf7ec682d49351dd655aa9386ad370;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git 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; ;