Adding datetime_undef_if_invalid to squelch errors on DateTime inflation of bogus...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Event.pm
index e9642e3..ea787f5 100644 (file)
@@ -1,5 +1,19 @@
 package DBICTest::Schema::Event;
 
-use base qw/DBIx::Class/;
+use strict;
+use warnings;
+use base qw/DBIx::Class::Core/;
 
-__PACKAGE__->load_components(qw/
+__PACKAGE__->load_components(qw/InflateColumn::DateTime/);
+
+__PACKAGE__->table('event');
+
+__PACKAGE__->add_columns(
+  id => { data_type => 'integer', is_auto_increment => 1 },
+  starts_at => { data_type => 'datetime', datetime_undef_if_invalid => 1 },
+  created_on => { data_type => 'timestamp' }
+);
+
+__PACKAGE__->set_primary_key('id');
+
+1;