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'); |
1a625304 |
33 | __PACKAGE__->add_unique_constraint(artist => ['artistid']); # do not remove, part of a test |
a02675cd |
34 | |
90e6de6c |
35 | __PACKAGE__->mk_classdata('field_name_for', { |
36 | artistid => 'primary key', |
37 | name => 'artist name', |
38 | }); |
39 | |
ff657a43 |
40 | __PACKAGE__->has_many( |
41 | cds => 'DBICTest::Schema::CD', undef, |
42 | { order_by => 'year' }, |
43 | ); |
c193d1d2 |
44 | __PACKAGE__->has_many( |
45 | cds_unordered => 'DBICTest::Schema::CD' |
46 | ); |
ff657a43 |
47 | |
48 | __PACKAGE__->has_many( twokeys => 'DBICTest::Schema::TwoKeys' ); |
49 | __PACKAGE__->has_many( onekeys => 'DBICTest::Schema::OneKey' ); |
50 | |
51 | __PACKAGE__->has_many( |
52 | artist_undirected_maps => 'DBICTest::Schema::ArtistUndirectedMap', |
53 | [ {'foreign.id1' => 'self.artistid'}, {'foreign.id2' => 'self.artistid'} ], |
54 | { cascade_copy => 0 } # this would *so* not make sense |
55 | ); |
56 | |
d5633096 |
57 | __PACKAGE__->has_many( |
04e0d6ef |
58 | artwork_to_artist => 'DBICTest::Schema::Artwork_to_Artist' => 'artist_id' |
d5633096 |
59 | ); |
04e0d6ef |
60 | __PACKAGE__->many_to_many('artworks', 'artwork_to_artist', 'artwork'); |
d5633096 |
61 | |
62 | |
aaf2403d |
63 | sub sqlt_deploy_hook { |
64 | my ($self, $sqlt_table) = @_; |
65 | |
d6c79cb3 |
66 | if ($sqlt_table->schema->translator->producer_type =~ /SQLite$/ ) { |
1f5bf324 |
67 | $sqlt_table->add_index( name => 'artist_name_hookidx', fields => ['name'] ) |
d6c79cb3 |
68 | or die $sqlt_table->error; |
69 | } |
aaf2403d |
70 | } |
c385ecea |
71 | |
52c53388 |
72 | sub store_column { |
73 | my ($self, $name, $value) = @_; |
a22688ab |
74 | $value = 'X '.$value if ($name eq 'name' && $value && $value =~ /(X )?store_column test/); |
52c53388 |
75 | $self->next::method($name, $value); |
76 | } |
77 | |
78 | |
a02675cd |
79 | 1; |