(no commit message)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Producer.pm
CommitLineData
30a8108e 1package DBICTest::Schema::Producer;
2
3use base 'DBIx::Class::Core';
4
5__PACKAGE__->table('producer');
6__PACKAGE__->add_columns(qw/producerid name/);
7__PACKAGE__->set_primary_key('producerid');
8
91;