Added dependecies to Makefil. Added a LinerNote test module.
[dbsrgits/DBIx-Class-Schema-ResultSetAccessors.git] / t / lib / MyApp1 / Schema / Result / LinerNote.pm
diff --git a/t/lib/MyApp1/Schema/Result/LinerNote.pm b/t/lib/MyApp1/Schema/Result/LinerNote.pm
new file mode 100644 (file)
index 0000000..2042225
--- /dev/null
@@ -0,0 +1,8 @@
+package MyApp1::Schema::Result::LinerNote;
+use base qw/DBIx::Class::Core/;
+
+__PACKAGE__->table('liner_note');
+__PACKAGE__->add_columns(qw/ noteid note /);
+__PACKAGE__->set_primary_key('noteid');
+
+1;
\ No newline at end of file