From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789101112 package Test::MissingTzSchema::Result::Example;use base 'DBIx::Class::Core';__PACKAGE__->table('example');__PACKAGE__->load_components('InflateColumn::DateTime::WithTimeZone');__PACKAGE__->add_columns( dt => { data_type => 'timestamp', timezone_source => 'tz' },);1;
package
Test::MissingTzSchema::Result::Example;
use
base
'DBIx::Class::Core'
;
__PACKAGE__->table(
'example'
);
__PACKAGE__->load_components(
'InflateColumn::DateTime::WithTimeZone'
__PACKAGE__->add_columns(
dt
=> {
data_type
=>
'timestamp'
,
timezone_source
'tz'
},
1;