Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / OneKey.pm
1 package # hide from PAUSE
2     DBICTest::Schema::OneKey;
3
4 use warnings;
5 use strict;
6
7 use base qw/DBICTest::BaseResult/;
8
9 __PACKAGE__->table('onekey');
10 __PACKAGE__->add_columns(
11   'id' => {
12     data_type => 'integer',
13     is_auto_increment => 1,
14   },
15   'artist' => {
16     data_type => 'integer',
17   },
18   'cd' => {
19     data_type => 'integer',
20   },
21 );
22 __PACKAGE__->set_primary_key('id');
23
24
25 1;