]> Dogcows Code - chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate/blob - t/lib/DBICTest/Schema/Producer.pm
tests from multicreate
[chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate] / 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 size => 100,
15 },
16 );
17 __PACKAGE__->set_primary_key('producerid');
18 __PACKAGE__->add_unique_constraint(prod_name => [ qw/name/ ]);
19
20 __PACKAGE__->has_many(
21 producer_to_cd => 'DBICTest::Schema::CD_to_Producer' => 'producer'
22 );
23 __PACKAGE__->many_to_many('cds', 'producer_to_cd', 'cd');
24
25 __PACKAGE__->resultset_class( __PACKAGE__ . '::ResultSet');
26
27 package DBICTest::Schema::Producer::ResultSet;
28
29 use base qw( DBIx::Class::ResultSet::RecursiveUpdate );
30
31
32 1;
This page took 0.032137 seconds and 4 git commands to generate.