added datetime parser types for the dbs I can find them for
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Event.pm
index 92dad5d..e9642e3 100644 (file)
@@ -2,15 +2,4 @@ package DBICTest::Schema::Event;
 
 use base qw/DBIx::Class/;
 
-__PACKAGE__->load_components(qw/InflateColumn::DateTime PK::Auto Core/);
-
-__PACKAGE__->table('event');
-
-__PACKAGE__->add_columns(
-  id => { data_type => 'integer', is_auto_increment => 1 },
-  starts_at => { data_type => 'datetime' }
-);
-
-__PACKAGE__->set_primary_key('id');
-
-1;
+__PACKAGE__->load_components(qw/