The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package MyDB::Main::Artist;
use base qw/DBIx::Class/;
__PACKAGE__->load_components(qw/RDBOHelpers Core/);
__PACKAGE__->table('artist');
__PACKAGE__->add_columns(qw/ artistid name /);
__PACKAGE__->set_primary_key('artistid');
__PACKAGE__->has_many( 'cds' => 'MyDB::Main::Cd' );

1;