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