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