Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / LinerNotes.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::LinerNotes;
3
4 use base qw/DBIx::Class::Core/;
5
6 DBICTest::Schema::LinerNotes->table('liner_notes');
7 DBICTest::Schema::LinerNotes->add_columns(
8   'liner_id' => {
9     data_type => 'integer',
10   },
11   'notes' => {
12     data_type => 'varchar',
13   },
14 );
15 DBICTest::Schema::LinerNotes->set_primary_key('liner_id');
16
17 1;