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