Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

use strict;
__PACKAGE__->load_components(qw/InflateColumn::DateTime/);
__PACKAGE__->table('event_small_dt');
__PACKAGE__->add_columns(
id => { data_type => 'integer', is_auto_increment => 1 },
small_dt => { data_type => 'smalldatetime', is_nullable => 1 },
);
__PACKAGE__->set_primary_key('id');
1;