Fehlendes 'not null' in MetaSetup CsvImportReport
authorMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 1 Jul 2013 15:18:19 +0000 (17:18 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 1 Jul 2013 15:30:23 +0000 (17:30 +0200)
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' ]);