We can now generate our own test schema
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / ArtistUndirectedMap.pm
1 package DBICTest::Schema::ArtistUndirectedMap;
2
3 use base 'DBIx::Class::Core';
4
5 __PACKAGE__->table('artist_undirected_map');
6 __PACKAGE__->add_columns(
7   'id1' => { data_type => 'integer' },
8   'id2' => { data_type => 'integer' },
9 );
10 __PACKAGE__->set_primary_key(qw/id1 id2/);
11
12 1;