1 package DBICTest::Schema::EventTZ;
6 use base qw/DBICTest::BaseResult/;
8 __PACKAGE__->load_components(qw/InflateColumn::DateTime/);
10 __PACKAGE__->table('event');
12 __PACKAGE__->add_columns(
13 id => { data_type => 'integer', is_auto_increment => 1 },
14 starts_at => { data_type => 'datetime', time_zone => "America/Chicago", locale => 'de_DE', datetime_undef_if_invalid => 1 },
16 # DO NOT change 'timezone' - there to test the legacy syntax
17 created_on => { data_type => 'timestamp', timezone => "America/Chicago", floating_tz_ok => 1 },
20 __PACKAGE__->set_primary_key('id');
22 sub _datetime_parser {
23 require DateTime::Format::MySQL;
24 DateTime::Format::MySQL->new();