Test split to run against normal rels and helper rels (currently just has_one)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / TwoKeys.pm
1 package DBICTest::Schema::TwoKeys;
2
3 use base 'DBIx::Class::Core';
4
5 DBICTest::Schema::TwoKeys->table('twokeys');
6 DBICTest::Schema::TwoKeys->add_columns(qw/artist cd/);
7 DBICTest::Schema::TwoKeys->set_primary_key(qw/artist cd/);
8
9 1;