From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

package # hide from PAUSE
DBICTest::Schema::TimestampPrimaryKey;
use strict;
__PACKAGE__->table('timestamp_primary_key_test');
__PACKAGE__->add_columns(
'id' => {
data_type => 'timestamp',
default_value => \'current_timestamp',
},
);
__PACKAGE__->set_primary_key('id');
1;