Adding datetime_undef_if_invalid to squelch errors on DateTime inflation of bogus...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Event.pm
index 937d782..ea787f5 100644 (file)
@@ -10,7 +10,8 @@ __PACKAGE__->table('event');
 
 __PACKAGE__->add_columns(
   id => { data_type => 'integer', is_auto_increment => 1 },
-  starts_at => { data_type => 'datetime' }
+  starts_at => { data_type => 'datetime', datetime_undef_if_invalid => 1 },
+  created_on => { data_type => 'timestamp' }
 );
 
 __PACKAGE__->set_primary_key('id');