X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate;a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FLyrics.pm;fp=t%2Flib%2FDBICTest%2FSchema%2FLyrics.pm;h=e3f629dc94f7a611e9bf638e8d6c934899f19752;hp=0000000000000000000000000000000000000000;hb=584713f437ffa9390821a0580ed368aa22fb552e;hpb=d93b1239cb7de482ac79a091d7daa67115596306 diff --git a/t/lib/DBICTest/Schema/Lyrics.pm b/t/lib/DBICTest/Schema/Lyrics.pm new file mode 100644 index 0000000..e3f629d --- /dev/null +++ b/t/lib/DBICTest/Schema/Lyrics.pm @@ -0,0 +1,28 @@ +package # hide from PAUSE + DBICTest::Schema::Lyrics; + +use base qw/DBIx::Class::Core/; + +__PACKAGE__->table('lyrics'); +__PACKAGE__->add_columns( + 'lyric_id' => { + data_type => 'integer', + is_auto_increment => 1, + }, + 'track_id' => { + data_type => 'integer', + is_foreign_key => 1, + }, +); +__PACKAGE__->set_primary_key('lyric_id'); +__PACKAGE__->belongs_to('track', 'DBICTest::Schema::Track', 'track_id'); +__PACKAGE__->has_many('lyric_versions', 'DBICTest::Schema::LyricVersion', 'lyric_id'); + +__PACKAGE__->resultset_class( __PACKAGE__ . '::ResultSet'); + +package DBICTest::Schema::Lyrics::ResultSet; + +use base qw( DBIx::Class::ResultSet::RecursiveUpdate ); + + +1;