]> Dogcows Code - chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate/blobdiff - t/lib/DBICTest/Schema/Serialized.pm
tests from multicreate
[chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate] / t / lib / DBICTest / Schema / Serialized.pm
diff --git a/t/lib/DBICTest/Schema/Serialized.pm b/t/lib/DBICTest/Schema/Serialized.pm
new file mode 100644 (file)
index 0000000..687dcd1
--- /dev/null
@@ -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;
This page took 0.022749 seconds and 4 git commands to generate.