(no commit message)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / LinerNotes.pm
CommitLineData
11b78bd6 1package DBICTest::Schema::LinerNotes;
a02675cd 2
3use base qw/DBIx::Class::Core/;
4
11b78bd6 5DBICTest::Schema::LinerNotes->table('liner_notes');
6DBICTest::Schema::LinerNotes->add_columns(qw/liner_id notes/);
7DBICTest::Schema::LinerNotes->set_primary_key('liner_id');
a02675cd 8
91;