+++ /dev/null
-MANIFEST
-MANIFEST.SKIP
-README
-LICENSE
-Todo
-Changes
-Makefile.PL
-lib/DBIx/Class/Schema/ResultSetAccessors.pm
-t/basic.t
-t/lib/MyApp1/Schema.pm
-t/lib/MyApp1/Schema/Result/Artist.pm
-t/lib/MyApp1/Schema/Result/CD.pm
-t/lib/MyApp1/Schema/Result/Source.pm
-t/lib/MyApp1/Schema/ResultSet/CD.pm
-t/lib/MyApp2/Schema.pm
-t/lib/MyApp2/Schema/Result/Artist.pm
-t/lib/MyApp2/Schema/Result/CD.pm
-t/lib/MyApp2/Schema/Result/Source.pm
\ No newline at end of file
all_from 'lib/DBIx/Class/Schema/ResultSetAccessors.pm';
requires 'DBIx::Class' => 0;
+requires 'String::CamelCase' => 0;
+requires 'Lingua::EN::Inflect::Phrase' => 0;
+requires 'Sub::Name' => 0;
test_requires 'Test::More' => '0.94';
test_requires 'Test::Exception';
+++ /dev/null
-If this is still here it means the programmer was too lazy to create the readme file.
-
-You can create it now by using the command shown below from this directory:
-
-pod2text DBIx::Class::Schema::ResultSetAccessors > README
-
-At the very least you should be able to use this set of instructions
-to install the module...
-perl Makefile.PL
-make
-make test
-make install
-If you are on a windows box you should use 'nmake' rather than 'make'.
--- /dev/null
+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