package My::Main::Result::Artist; use base qw/ DBIx::Class::Core /; __PACKAGE__->table('artist'); __PACKAGE__->add_columns(qw/ artistid name /); __PACKAGE__->set_primary_key('artistid'); __PACKAGE__->has_many( 'cds' => 'My::Main::Result::Cd' ); sub insert { my ( $self, @args ) = @_; $self->next::method(@args); # $self->create_related ('cds', \%initial_cd_data ); print "42\n"; return $self; } 1;