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