Move relationships out of Relationships.pm and in to the respective classes. Removed...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / TwoKeys.pm
1 package # hide from PAUSE
2     DBICTest::Schema::TwoKeys;
3
4 use base 'DBIx::Class::Core';
5
6 __PACKAGE__->table('twokeys');
7 __PACKAGE__->add_columns(
8   'artist' => { data_type => 'integer' },
9   'cd' => { data_type => 'integer' },
10 );
11 __PACKAGE__->set_primary_key(qw/artist cd/);
12
13 __PACKAGE__->belongs_to( artist => 'DBICTest::Schema::Artist' );
14 __PACKAGE__->belongs_to( cd => 'DBICTest::Schema::CD' );
15
16 1;