Stop shipping world writeable files in our tarball
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / EventSmallDT.pm
CommitLineData
3d98c75e 1package DBICTest::Schema::EventSmallDT;
2
3use strict;
4use warnings;
5use base qw/DBICTest::BaseResult/;
6
7__PACKAGE__->load_components(qw/InflateColumn::DateTime/);
8
9__PACKAGE__->table('event_small_dt');
10
11__PACKAGE__->add_columns(
12 id => { data_type => 'integer', is_auto_increment => 1 },
13 small_dt => { data_type => 'smalldatetime', is_nullable => 1 },
14);
15
16__PACKAGE__->set_primary_key('id');
17
181;