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

use warnings;
use strict;

use base qw( DBIx::Class::Core );

__PACKAGE__->table('track');

__PACKAGE__->add_columns(
  trackid => {
    data_type => 'integer',
    is_auto_increment => 1
  },
  cd => {
    data_type => 'integer',
  },
  title => {
    data_type => 'text',
  },
);

__PACKAGE__->set_primary_key('trackid');

__PACKAGE__->add_unique_constraint([qw( title cd )]);

__PACKAGE__->belongs_to('cd' => 'MyApp::Schema::Result::Cd');

1;