Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / CD_to_Producer.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 DBICTest::Schema::CD_to_Producer;
30a8108e 3
4use base 'DBIx::Class::Core';
5
6__PACKAGE__->table('cd_to_producer');
0009fa49 7__PACKAGE__->add_columns(
8 cd => { data_type => 'integer' },
9 producer => { data_type => 'integer' },
10);
30a8108e 11__PACKAGE__->set_primary_key(qw/cd producer/);
12
131;