Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / LinerNotes.pm
CommitLineData
8273e845 1package # hide from PAUSE
c6d74d3e 2 DBICTest::Schema::LinerNotes;
a02675cd 3
660cf1be 4use base qw/DBICTest::BaseResult/;
a02675cd 5
11357d09 6__PACKAGE__->table('liner_notes');
7__PACKAGE__->add_columns(
0009fa49 8 'liner_id' => {
9 data_type => 'integer',
10 },
11 'notes' => {
12 data_type => 'varchar',
cb561d1a 13 size => 100,
0009fa49 14 },
15);
11357d09 16__PACKAGE__->set_primary_key('liner_id');
17__PACKAGE__->belongs_to(
096f4212 18 'cd', 'DBICTest::Schema::CD', 'liner_id'
19);
a02675cd 20
211;