Merge branch 'master' into topic/constructor_rewrite
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / TimestampPrimaryKey.pm
CommitLineData
8273e845 1package # hide from PAUSE
4d4dc518 2 DBICTest::Schema::TimestampPrimaryKey;
3
4use base qw/DBICTest::BaseResult/;
5
6__PACKAGE__->table('timestamp_primary_key_test');
7
8__PACKAGE__->add_columns(
9 'id' => {
10 data_type => 'timestamp',
11 default_value => \'current_timestamp',
12 },
13);
14
15__PACKAGE__->set_primary_key('id');
16
171;