Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / TimestampPrimaryKey.pm
CommitLineData
8273e845 1package # hide from PAUSE
4d4dc518 2 DBICTest::Schema::TimestampPrimaryKey;
3
4a233f30 4use warnings;
5use strict;
6
4d4dc518 7use 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 },
16);
17
18__PACKAGE__->set_primary_key('id');
19
201;