af6257c83985542394878c5dc263227c78be052f
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Artist.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::Artist;
3
4 use base qw/DBICTest::BaseResult/;
5
6 __PACKAGE__->table('artist');
7 __PACKAGE__->source_info({
8     "source_info_key_A" => "source_info_value_A",
9     "source_info_key_B" => "source_info_value_B",
10     "source_info_key_C" => "source_info_value_C",
11 });
12 __PACKAGE__->add_columns(
13   'artistid' => {
14     data_type => 'integer',
15     is_auto_increment => 1,
16   },
17   'name' => {
18     data_type => 'varchar',
19     size      => 100,
20     is_nullable => 1,
21   },
22   rank => {
23     data_type => 'integer',
24     default_value => 13,
25   },
26   charfield => {
27     data_type => 'char',
28     size => 10,
29     is_nullable => 1,
30   },
31 );
32 __PACKAGE__->set_primary_key('artistid');
33 __PACKAGE__->add_unique_constraint(['name']);
34 __PACKAGE__->add_unique_constraint(artist => ['artistid']); # do not remove, part of a test
35 __PACKAGE__->add_unique_constraint(u_nullable => [qw/charfield rank/]);
36
37
38 __PACKAGE__->mk_classdata('field_name_for', {
39     artistid    => 'primary key',
40     name        => 'artist name',
41 });
42
43 __PACKAGE__->has_many(
44     cds => 'DBICTest::Schema::CD', undef,
45     { order_by => { -asc => 'year'} },
46 );
47
48
49 __PACKAGE__->has_many(
50     cds_80s => 'DBICTest::Schema::CD',
51     sub {
52       my ( $me, $as, $self_rsrc, $rel ) = @_;
53       return {
54         "${as}.artist" => (ref $me ? $me->artistid : { '=' => \"${me}.artistid"}),
55         "${as}.year"   => { '>', "1979",
56                             '<', "1990" }
57       };
58     }
59 );
60
61
62 __PACKAGE__->has_many(
63     cds_unordered => 'DBICTest::Schema::CD'
64 );
65 __PACKAGE__->has_many(
66     cds_very_very_very_long_relationship_name => 'DBICTest::Schema::CD'
67 );
68
69 __PACKAGE__->has_many( twokeys => 'DBICTest::Schema::TwoKeys' );
70 __PACKAGE__->has_many( onekeys => 'DBICTest::Schema::OneKey' );
71
72 __PACKAGE__->has_many(
73   artist_undirected_maps => 'DBICTest::Schema::ArtistUndirectedMap',
74   [ {'foreign.id1' => 'self.artistid'}, {'foreign.id2' => 'self.artistid'} ],
75   { cascade_copy => 0 } # this would *so* not make sense
76 );
77
78 __PACKAGE__->has_many(
79     artwork_to_artist => 'DBICTest::Schema::Artwork_to_Artist' => 'artist_id'
80 );
81 __PACKAGE__->many_to_many('artworks', 'artwork_to_artist', 'artwork');
82
83
84 sub sqlt_deploy_hook {
85   my ($self, $sqlt_table) = @_;
86
87   if ($sqlt_table->schema->translator->producer_type =~ /SQLite$/ ) {
88     $sqlt_table->add_index( name => 'artist_name_hookidx', fields => ['name'] )
89       or die $sqlt_table->error;
90   }
91 }
92
93 sub store_column {
94   my ($self, $name, $value) = @_;
95   $value = 'X '.$value if ($name eq 'name' && $value && $value =~ /(X )?store_column test/);
96   $self->next::method($name, $value);
97 }
98
99
100 1;