Move relationships out of Relationships.pm and in to the respective classes. Removed...
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Schema / TwoKeys.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 DBICTest::Schema::TwoKeys;
a02675cd 3
4use base 'DBIx::Class::Core';
5
ff657a43 6__PACKAGE__->table('twokeys');
7__PACKAGE__->add_columns(
0009fa49 8 'artist' => { data_type => 'integer' },
9 'cd' => { data_type => 'integer' },
10);
ff657a43 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' );
a02675cd 15
161;