Initial commit
[dbsrgits/DBIx-Class-Schema-ResultSetAccessors.git] / t / lib / MyApp2 / Schema / Result / Source.pm
diff --git a/t/lib/MyApp2/Schema/Result/Source.pm b/t/lib/MyApp2/Schema/Result/Source.pm
new file mode 100644 (file)
index 0000000..3c6865f
--- /dev/null
@@ -0,0 +1,8 @@
+package MyApp2::Schema::Result::Source;
+use base qw/DBIx::Class::Core/;
+
+__PACKAGE__->table('source');
+__PACKAGE__->add_columns(qw/ sourceid sourcename /);
+__PACKAGE__->set_primary_key('sourceid');
+
+1;
\ No newline at end of file