Commit | Line | Data |
c6d74d3e |
1 | package # hide from PAUSE |
2 | DBICTest::Schema::Artist; |
a02675cd |
3 | |
660cf1be |
4 | use base qw/DBICTest::BaseResult/; |
a02675cd |
5 | |
ff657a43 |
6 | __PACKAGE__->table('artist'); |
a48e92d7 |
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 | }); |
ff657a43 |
12 | __PACKAGE__->add_columns( |
0009fa49 |
13 | 'artistid' => { |
14 | data_type => 'integer', |
6e399b4f |
15 | is_auto_increment => 1, |
0009fa49 |
16 | }, |
17 | 'name' => { |
18 | data_type => 'varchar', |
cb561d1a |
19 | size => 100, |
0009fa49 |
20 | is_nullable => 1, |
21 | }, |
39da2a2b |
22 | rank => { |
23 | data_type => 'integer', |
24 | default_value => 13, |
25 | }, |
a0dd8679 |
26 | charfield => { |
27 | data_type => 'char', |
28 | size => 10, |
29 | is_nullable => 1, |
30 | }, |
0009fa49 |
31 | ); |
ff657a43 |
32 | __PACKAGE__->set_primary_key('artistid'); |
84f7e8a1 |
33 | __PACKAGE__->add_unique_constraint(['name']); |
1a625304 |
34 | __PACKAGE__->add_unique_constraint(artist => ['artistid']); # do not remove, part of a test |
e29e2b27 |
35 | __PACKAGE__->add_unique_constraint(u_nullable => [qw/charfield rank/]); |
a02675cd |
36 | |
84f7e8a1 |
37 | |
90e6de6c |
38 | __PACKAGE__->mk_classdata('field_name_for', { |
39 | artistid => 'primary key', |
40 | name => 'artist name', |
41 | }); |
42 | |
ff657a43 |
43 | __PACKAGE__->has_many( |
44 | cds => 'DBICTest::Schema::CD', undef, |
d2fcb9b3 |
45 | { order_by => { -asc => 'year'} }, |
ff657a43 |
46 | ); |
2255d0be |
47 | |
48 | |
49 | __PACKAGE__->has_many( |
50 | cds_80s => 'DBICTest::Schema::CD', |
51 | sub { |
a126983e |
52 | my ( $me_alias, $rel_alias, $me_result_source, $rel_name, $optional_me_object ) = @_; |
53 | return |
54 | ({ "${rel_alias}.artist" => { '=' => \"${me_alias}.artistid"}, |
55 | "${rel_alias}.year" => { '>', "1979", |
56 | '<', "1990" } |
57 | }, |
58 | $optional_me_object && |
59 | { "${rel_alias}.artist" => $optional_me_object->artistid, |
60 | "${rel_alias}.year" => { '>', "1979", |
61 | '<', "1990" } |
62 | }); |
63 | } |
2255d0be |
64 | ); |
65 | |
66 | |
c193d1d2 |
67 | __PACKAGE__->has_many( |
68 | cds_unordered => 'DBICTest::Schema::CD' |
69 | ); |
62d4dbae |
70 | __PACKAGE__->has_many( |
71 | cds_very_very_very_long_relationship_name => 'DBICTest::Schema::CD' |
72 | ); |
ff657a43 |
73 | |
74 | __PACKAGE__->has_many( twokeys => 'DBICTest::Schema::TwoKeys' ); |
75 | __PACKAGE__->has_many( onekeys => 'DBICTest::Schema::OneKey' ); |
76 | |
77 | __PACKAGE__->has_many( |
78 | artist_undirected_maps => 'DBICTest::Schema::ArtistUndirectedMap', |
79 | [ {'foreign.id1' => 'self.artistid'}, {'foreign.id2' => 'self.artistid'} ], |
80 | { cascade_copy => 0 } # this would *so* not make sense |
81 | ); |
82 | |
d5633096 |
83 | __PACKAGE__->has_many( |
04e0d6ef |
84 | artwork_to_artist => 'DBICTest::Schema::Artwork_to_Artist' => 'artist_id' |
d5633096 |
85 | ); |
04e0d6ef |
86 | __PACKAGE__->many_to_many('artworks', 'artwork_to_artist', 'artwork'); |
d5633096 |
87 | |
88 | |
aaf2403d |
89 | sub sqlt_deploy_hook { |
90 | my ($self, $sqlt_table) = @_; |
91 | |
d6c79cb3 |
92 | if ($sqlt_table->schema->translator->producer_type =~ /SQLite$/ ) { |
1f5bf324 |
93 | $sqlt_table->add_index( name => 'artist_name_hookidx', fields => ['name'] ) |
d6c79cb3 |
94 | or die $sqlt_table->error; |
95 | } |
aaf2403d |
96 | } |
c385ecea |
97 | |
52c53388 |
98 | sub store_column { |
99 | my ($self, $name, $value) = @_; |
a22688ab |
100 | $value = 'X '.$value if ($name eq 'name' && $value && $value =~ /(X )?store_column test/); |
52c53388 |
101 | $self->next::method($name, $value); |
102 | } |
103 | |
104 | |
a02675cd |
105 | 1; |