Missing stuff for DateTime branch
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Event.pm
1 package DBICTest::Schema::Event;
2
3 use base qw/DBIx::Class/;
4
5 __PACKAGE__->load_components(qw/InflateColumn::DateTime PK::Auto Core/);
6
7 __PACKAGE__->table('event');
8
9 __PACKAGE__->add_columns(
10   id => { data_type => 'integer', is_auto_increment => 1 },
11   starts_at => { data_type => 'datetime' }
12 );
13
14 __PACKAGE__->set_primary_key('id');
15
16 1;