Kosmetik, Kommentar verbessert, toter Code entfernt
[kivitendo-erp.git] / SL / DB / MetaSetup / CsvImportReportRow.pm
index 9814a64..eac145d 100644 (file)
@@ -4,14 +4,14 @@ package SL::DB::CsvImportReportRow;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('csv_import_report_rows');
 
 __PACKAGE__->meta->columns(
-  id                   => { type => 'serial', not_null => 1 },
-  csv_import_report_id => { type => 'integer', not_null => 1 },
   col                  => { type => 'integer', not_null => 1 },
+  csv_import_report_id => { type => 'integer', not_null => 1 },
+  id                   => { type => 'serial', not_null => 1 },
   row                  => { type => 'integer', not_null => 1 },
   value                => { type => 'text' },
 );
@@ -25,7 +25,5 @@ __PACKAGE__->meta->foreign_keys(
   },
 );
 
-# __PACKAGE__->meta->initialize;
-
 1;
 ;