X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=t%2Flib%2FDBICTest%2FSchema%2FSerialized.pm;fp=t%2Flib%2FDBICTest%2FSchema%2FSerialized.pm;h=687dcd1bd244b4d880451247bb211511f2e95faf;hb=584713f437ffa9390821a0580ed368aa22fb552e;hp=0000000000000000000000000000000000000000;hpb=d93b1239cb7de482ac79a091d7daa67115596306;p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate diff --git a/t/lib/DBICTest/Schema/Serialized.pm b/t/lib/DBICTest/Schema/Serialized.pm new file mode 100644 index 0000000..687dcd1 --- /dev/null +++ b/t/lib/DBICTest/Schema/Serialized.pm @@ -0,0 +1,13 @@ +package # hide from PAUSE + DBICTest::Schema::Serialized; + +use base 'DBIx::Class::Core'; + +__PACKAGE__->table('serialized'); +__PACKAGE__->add_columns( + 'id' => { data_type => 'integer' }, + 'serialized' => { data_type => 'text' }, +); +__PACKAGE__->set_primary_key('id'); + +1;