X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FCsvImportReportStatus.pm;h=f816079bf93b26dd4e7c22e3416da7fbf563fd83;hb=2bd51903b8c0ed8114ba05e481573b9440918210;hp=89f02a417ebf7ec682d49351dd655aa9386ad370;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/CsvImportReportStatus.pm b/SL/DB/MetaSetup/CsvImportReportStatus.pm index 89f02a417..f816079bf 100644 --- a/SL/DB/MetaSetup/CsvImportReportStatus.pm +++ b/SL/DB/MetaSetup/CsvImportReportStatus.pm @@ -9,8 +9,8 @@ use base 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; ;