Update to add myself to contributors and to hide Modules from the PAUSE Indexer.
[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');
0009fa49 6DBICTest::Schema::LinerNotes->add_columns(
7 'liner_id' => {
8 data_type => 'integer',
9 },
10 'notes' => {
11 data_type => 'varchar',
12 },
13);
11b78bd6 14DBICTest::Schema::LinerNotes->set_primary_key('liner_id');
a02675cd 15
161;