29bf11dfc4509a8ac98f46353396f27e3194dd97
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Event.pm
1 package DBICTest::Schema::Event;
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');
10
11 __PACKAGE__->add_columns(
12   id => { data_type => 'integer', is_auto_increment => 1 },
13
14 # this MUST be 'date' for the Firebird and SQLAnywhere tests
15   starts_at => { data_type => 'date', datetime_undef_if_invalid => 1 },
16
17   created_on => { data_type => 'timestamp' },
18   varchar_date => { data_type => 'varchar', size => 20, is_nullable => 1 },
19   varchar_datetime => { data_type => 'varchar', size => 20, is_nullable => 1 },
20   skip_inflation => { data_type => 'datetime', inflate_datetime => 0, is_nullable => 1 },
21   ts_without_tz => { data_type => 'datetime', is_nullable => 1 }, # used in EventTZPg
22 );
23
24 __PACKAGE__->set_primary_key('id');
25
26 # Test add_columns '+colname' to augment a column definition.
27 __PACKAGE__->add_columns(
28   '+varchar_date' => {
29     inflate_date => 1,
30   },
31   '+varchar_datetime' => {
32     inflate_datetime => 1,
33   },
34 );
35
36 1;