Catalyst Improving your Catalyst Application #51

Let's use it

package MyApp::Schema::MapFooTags;
use strict; use warnings;
use base 'DBIx::Class';
use MapMaker;

my $mapmaker = MapMaker->new(
   left_class  => 'MyApp::Schema::Foo',
   right_class => 'MyApp::Schema::FooTag',
   left_name   => 'foo',
   right_name  => 'tag',
   tablename   => 'map_foo_tags',
);
continued...
Infinity Interactive