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