Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Event.pm
1 package DBICTest::Schema::Event;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBICTest::BaseResult/;
7
8 __PACKAGE__->load_components(qw/InflateColumn::DateTime/);
9
10 __PACKAGE__->table('event');
11
12 __PACKAGE__->add_columns(
13   id => { data_type => 'integer', is_auto_increment => 1 },
14
15 # this MUST be 'date' for the Firebird and SQLAnywhere tests
16   starts_at => { data_type => 'date', datetime_undef_if_invalid => 1 },
17
18   created_on => { data_type => 'timestamp' },
19   varchar_date => { data_type => 'varchar', size => 20, is_nullable => 1 },
20   varchar_datetime => { data_type => 'varchar', size => 20, is_nullable => 1 },
21   skip_inflation => { data_type => 'datetime', inflate_datetime => 0, is_nullable => 1 },
22   ts_without_tz => { data_type => 'datetime', is_nullable => 1 }, # used in EventTZPg
23 );
24
25 __PACKAGE__->set_primary_key('id');
26
27 # Test add_columns '+colname' to augment a column definition.
28 __PACKAGE__->add_columns(
29   '+varchar_date' => {
30     inflate_date => 1,
31   },
32   '+varchar_datetime' => {
33     inflate_datetime => 1,
34   },
35 );
36
37 1;