Introduce GOVERNANCE document and empty RESOLUTIONS file.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / TimestampPrimaryKey.pm
1 package # hide from PAUSE
2     DBICTest::Schema::TimestampPrimaryKey;
3
4 use warnings;
5 use strict;
6
7 use base qw/DBICTest::BaseResult/;
8
9 __PACKAGE__->table('timestamp_primary_key_test');
10
11 __PACKAGE__->add_columns(
12   'id' => {
13     data_type => 'timestamp',
14     default_value => \'current_timestamp',
15     retrieve_on_insert => 1,
16   },
17 );
18
19 __PACKAGE__->set_primary_key('id');
20
21 1;