The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package MyTestApp::Schema::Post;
use Moose;
with 'Mongoose::Document' => { -collection_name=>'post' };

has 'title' => ( is=>'rw', isa=>'Str' );
has 'body'  => ( is=>'rw', isa=>'Str' );

1;