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