Commit | Line | Data |
---|---|---|
3d98c75e | 1 | package DBICTest::Schema::EventSmallDT; |
2 | ||
3 | use strict; | |
4 | use warnings; | |
5 | use 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 | ||
18 | 1; |