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