Extend proxy rel attr
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / CD.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::CD;
3
4 use base qw/DBICTest::BaseResult/;
5
6 # this tests table name as scalar ref
7 # DO NOT REMOVE THE \
8 __PACKAGE__->table(\'cd');
9
10 __PACKAGE__->add_columns(
11   'cdid' => {
12     data_type => 'integer',
13     is_auto_increment => 1,
14   },
15   'artist' => {
16     data_type => 'integer',
17   },
18   'title' => {
19     data_type => 'varchar',
20     size      => 100,
21   },
22   'year' => {
23     data_type => 'varchar',
24     size      => 100,
25   },
26   'genreid' => { 
27     data_type => 'integer',
28     is_nullable => 1,
29     accessor => undef,
30   },
31   'single_track' => {
32     data_type => 'integer',
33     is_nullable => 1,
34     is_foreign_key => 1,
35   }
36 );
37 __PACKAGE__->set_primary_key('cdid');
38 __PACKAGE__->add_unique_constraint([ qw/artist title/ ]);
39
40 __PACKAGE__->belongs_to( artist => 'DBICTest::Schema::Artist', undef, { 
41     is_deferrable => 1, 
42     proxy => { artist_name => 'name' },
43 });
44 __PACKAGE__->belongs_to( very_long_artist_relationship => 'DBICTest::Schema::Artist', 'artist', { 
45     is_deferrable => 1, 
46 });
47
48 # in case this is a single-cd it promotes a track from another cd
49 __PACKAGE__->belongs_to( single_track => 'DBICTest::Schema::Track', 'single_track', 
50     { join_type => 'left'} 
51 );
52
53 __PACKAGE__->has_many( tracks => 'DBICTest::Schema::Track' );
54 __PACKAGE__->has_many(
55     tags => 'DBICTest::Schema::Tag', undef,
56     { order_by => 'tag' },
57 );
58 __PACKAGE__->has_many(
59     cd_to_producer => 'DBICTest::Schema::CD_to_Producer' => 'cd'
60 );
61
62 __PACKAGE__->might_have(
63     liner_notes => 'DBICTest::Schema::LinerNotes', undef,
64     { proxy => [ qw/notes/ ] },
65 );
66 __PACKAGE__->might_have(artwork => 'DBICTest::Schema::Artwork', 'cd_id');
67 __PACKAGE__->has_one(mandatory_artwork => 'DBICTest::Schema::Artwork', 'cd_id');
68
69 __PACKAGE__->many_to_many( producers => cd_to_producer => 'producer' );
70 __PACKAGE__->many_to_many(
71     producers_sorted => cd_to_producer => 'producer',
72     { order_by => 'producer.name' },
73 );
74
75 __PACKAGE__->belongs_to('genre', 'DBICTest::Schema::Genre',
76     { 'foreign.genreid' => 'self.genreid' },
77     {
78         join_type => 'left',
79         on_delete => 'SET NULL',
80         on_update => 'CASCADE',
81     },
82 );
83
84 #This second relationship was added to test the short-circuiting of pointless
85 #queries provided by undef_on_null_fk. the relevant test in 66relationship.t
86 __PACKAGE__->belongs_to('genre_inefficient', 'DBICTest::Schema::Genre',
87     { 'foreign.genreid' => 'self.genreid' },
88     {
89         join_type => 'left',
90         on_delete => 'SET NULL',
91         on_update => 'CASCADE',
92         undef_on_null_fk => 0,
93     },
94 );
95
96 1;