Fehlendes 'not null' in MetaSetup CsvImportReport
[kivitendo-erp.git] / SL / DB / MetaSetup / CsvImportReport.pm
index 041825d..23d411b 100644 (file)
@@ -14,7 +14,7 @@ __PACKAGE__->meta->columns(
   profile_id => { type => 'integer', not_null => 1 },
   type       => { type => 'text', not_null => 1 },
   file       => { type => 'text', not_null => 1 },
-  numrows    => { type => 'integer' },
+  numrows    => { type => 'integer', not_null => 1 },
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);