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

use warnings;
use strict;

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

__PACKAGE__->table('track');

__PACKAGE__->add_columns(qw/ trackid cd title/);

__PACKAGE__->set_primary_key('trackid');

__PACKAGE__->belongs_to('cd' => 'MyDatabase::Main::Result::Cd');

1;