The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package MyDatabase::Main::Result::Artist;

use warnings;
use strict;

use base qw/DBIx::Class::Core/;

__PACKAGE__->table('artist');

__PACKAGE__->add_columns(qw/ artistid name /);

__PACKAGE__->set_primary_key('artistid');

__PACKAGE__->has_many('cds' => 'MyDatabase::Main::Result::Cd');

1;