Help for this page

Select Code to Download


  1. or download this
    package MyApp::Schema::Result::Foo;
    
    ...
    # and as always with Moose classes
    __PACKAGE__->meta->make_immutable;
    1;
    
  2. or download this
    package Test::Schema;
    
    ...
    
    __PACKAGE__->meta->make_immutable(inline_constructor => 0);
    1;
    
  3. or download this
    -o use_moose=1