Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / EventSmallDT.pm
CommitLineData
3d98c75e 1package DBICTest::Schema::EventSmallDT;
2
3use strict;
4use warnings;
4a233f30 5
3d98c75e 6use base qw/DBICTest::BaseResult/;
7
8__PACKAGE__->load_components(qw/InflateColumn::DateTime/);
9
10__PACKAGE__->table('event_small_dt');
11
12__PACKAGE__->add_columns(
13 id => { data_type => 'integer', is_auto_increment => 1 },
14 small_dt => { data_type => 'smalldatetime', is_nullable => 1 },
15);
16
17__PACKAGE__->set_primary_key('id');
18
191;