Pflichtenheftpunkte bearbeiten
[kivitendo-erp.git] / SL / DB / MetaSetup / CsvImportReportRow.pm
index 9814a64..0dea93e 100644 (file)
@@ -9,9 +9,9 @@ use base 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;
 ;