Commit | Line | Data |
---|---|---|
11b78bd6 | 1 | package DBICTest::Schema::LinerNotes; |
a02675cd | 2 | |
3 | use base qw/DBIx::Class::Core/; | |
4 | ||
11b78bd6 | 5 | DBICTest::Schema::LinerNotes->table('liner_notes'); |
6 | DBICTest::Schema::LinerNotes->add_columns(qw/liner_id notes/); | |
7 | DBICTest::Schema::LinerNotes->set_primary_key('liner_id'); | |
a02675cd | 8 | |
9 | 1; |