Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Producer.pm
1 package # hide from PAUSE
2     DBICTest::Schema::Producer;
3
4 use warnings;
5 use strict;
6
7 use base qw/DBICTest::BaseResult/;
8
9 __PACKAGE__->table('producer');
10 __PACKAGE__->add_columns(
11   'producerid' => {
12     data_type => 'integer',
13     is_auto_increment => 1
14   },
15   'name' => {
16     data_type => 'varchar',
17     size      => 100,
18   },
19 );
20 __PACKAGE__->set_primary_key('producerid');
21 __PACKAGE__->add_unique_constraint(prod_name => [ qw/name/ ]);
22
23 __PACKAGE__->has_many(
24     producer_to_cd => 'DBICTest::Schema::CD_to_Producer' => 'producer'
25 );
26 __PACKAGE__->many_to_many('cds', 'producer_to_cd', 'cd');
27 1;