X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate;a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FImage.pm;fp=t%2Flib%2FDBICTest%2FSchema%2FImage.pm;h=ebfc5bcbd9bdc9dce3c82f35f5a905ed440f6ee5;hp=0000000000000000000000000000000000000000;hb=584713f437ffa9390821a0580ed368aa22fb552e;hpb=d93b1239cb7de482ac79a091d7daa67115596306 diff --git a/t/lib/DBICTest/Schema/Image.pm b/t/lib/DBICTest/Schema/Image.pm new file mode 100644 index 0000000..ebfc5bc --- /dev/null +++ b/t/lib/DBICTest/Schema/Image.pm @@ -0,0 +1,35 @@ +package # hide from PAUSE + DBICTest::Schema::Image; + +use base qw/DBIx::Class::Core/; + +__PACKAGE__->table('images'); +__PACKAGE__->add_columns( + 'id' => { + data_type => 'integer', + is_auto_increment => 1, + }, + 'artwork_id' => { + data_type => 'integer', + is_foreign_key => 1, + }, + 'name' => { + data_type => 'varchar', + size => 100, + }, + 'data' => { + data_type => 'blob', + is_nullable => 1, + }, +); +__PACKAGE__->set_primary_key('id'); +__PACKAGE__->belongs_to('artwork', 'DBICTest::Schema::Artwork', 'artwork_id'); + +__PACKAGE__->resultset_class( __PACKAGE__ . '::ResultSet'); + +package DBICTest::Schema::Image::ResultSet; + +use base qw( DBIx::Class::ResultSet::RecursiveUpdate ); + + +1;