fix related resultsets and multi-create
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / CD.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::CD;
3
4 use base 'DBIx::Class::Core';
5
6 __PACKAGE__->table('cd');
7 __PACKAGE__->add_columns(
8   'cdid' => {
9     data_type => 'integer',
10     is_auto_increment => 1,
11   },
12   'artist' => {
13     data_type => 'integer',
14   },
15   'title' => {
16     data_type => 'varchar',
17     size      => 100,
18   },
19   'year' => {
20     data_type => 'varchar',
21     size      => 100,
22   },
23   'genreid' => { 
24     data_type => 'integer' 
25   }
26 );
27 __PACKAGE__->set_primary_key('cdid');
28 __PACKAGE__->add_unique_constraint([ qw/artist title/ ]);
29
30 __PACKAGE__->belongs_to( artist => 'DBICTest::Schema::Artist', undef, { 
31     is_deferrable => 1, 
32     on_delete => undef,
33     on_update => 'SET NULL',
34 });
35
36 __PACKAGE__->has_many( tracks => 'DBICTest::Schema::Track' );
37 __PACKAGE__->has_many(
38     tags => 'DBICTest::Schema::Tag', undef,
39     { order_by => 'tag' },
40 );
41 __PACKAGE__->has_many(
42     cd_to_producer => 'DBICTest::Schema::CD_to_Producer' => 'cd'
43 );
44
45 __PACKAGE__->might_have(
46     liner_notes => 'DBICTest::Schema::LinerNotes', undef,
47     { proxy => [ qw/notes/ ] },
48 );
49 __PACKAGE__->many_to_many( producers => cd_to_producer => 'producer' );
50 __PACKAGE__->many_to_many(
51     producers_sorted => cd_to_producer => 'producer',
52     { order_by => 'producer.name' },
53 );
54
55 __PACKAGE__->belongs_to('genre', 'DBICTest::Schema::Genre', { 'foreign.genreid' => 'self.genreid' });
56
57 #__PACKAGE__->add_relationship('genre', 'DBICTest::Schema::Genre',
58 #    { 'foreign.genreid' => 'self.genreid' },
59 #    { 'accessor' => 'single' }
60 #);
61
62 1;