Stop shipping world writeable files in our tarball
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Producer.pm
CommitLineData
8273e845 1package # hide from PAUSE
c6d74d3e 2 DBICTest::Schema::Producer;
30a8108e 3
660cf1be 4use base qw/DBICTest::BaseResult/;
30a8108e 5
6__PACKAGE__->table('producer');
0009fa49 7__PACKAGE__->add_columns(
8 'producerid' => {
9 data_type => 'integer',
10 is_auto_increment => 1
11 },
12 'name' => {
13 data_type => 'varchar',
cb561d1a 14 size => 100,
0009fa49 15 },
16);
30a8108e 17__PACKAGE__->set_primary_key('producerid');
368a5228 18__PACKAGE__->add_unique_constraint(prod_name => [ qw/name/ ]);
30a8108e 19
87310237 20__PACKAGE__->has_many(
21 producer_to_cd => 'DBICTest::Schema::CD_to_Producer' => 'producer'
22);
ab4b097b 23__PACKAGE__->many_to_many('cds', 'producer_to_cd', 'cd');
30a8108e 241;