Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / OneKey.pm
CommitLineData
8273e845 1package # hide from PAUSE
c6d74d3e 2 DBICTest::Schema::OneKey;
a02675cd 3
4a233f30 4use warnings;
5use strict;
6
660cf1be 7use base qw/DBICTest::BaseResult/;
a02675cd 8
11357d09 9__PACKAGE__->table('onekey');
10__PACKAGE__->add_columns(
0009fa49 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);
11357d09 22__PACKAGE__->set_primary_key('id');
a02675cd 23
24
251;