]> Dogcows Code - chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate/blob - t/lib/DBICTest/Schema/ArtistUndirectedMap.pm
tests from multicreate
[chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate] / t / lib / DBICTest / Schema / ArtistUndirectedMap.pm
1 package # hide from PAUSE
2 DBICTest::Schema::ArtistUndirectedMap;
3
4 use base 'DBIx::Class::Core';
5
6 __PACKAGE__->table('artist_undirected_map');
7 __PACKAGE__->add_columns(
8 'id1' => { data_type => 'integer' },
9 'id2' => { data_type => 'integer' },
10 );
11 __PACKAGE__->set_primary_key(qw/id1 id2/);
12
13 __PACKAGE__->belongs_to( 'artist1', 'DBICTest::Schema::Artist', 'id1', { on_delete => 'RESTRICT', on_update => 'CASCADE'} );
14 __PACKAGE__->belongs_to( 'artist2', 'DBICTest::Schema::Artist', 'id2', { on_delete => undef, on_update => 'CASCADE'} );
15 __PACKAGE__->has_many(
16 'mapped_artists', 'DBICTest::Schema::Artist',
17 [ {'foreign.artistid' => 'self.id1'}, {'foreign.artistid' => 'self.id2'} ],
18 );
19
20 1;
This page took 0.029475 seconds and 4 git commands to generate.