Sophie

Sophie

distrib > Mageia > 3 > x86_64 > by-pkgid > a0a758a96467334e3dd187f3c782de0a > files > 224

perl-DBIx-Class-0.82.40-2.mga3.noarch.rpm

package MyDatabase::Main::Result::Cd;

use warnings;
use strict;

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

__PACKAGE__->table('cd');

__PACKAGE__->add_columns(qw/ cdid artist title/);

__PACKAGE__->set_primary_key('cdid');

__PACKAGE__->belongs_to('artist' => 'MyDatabase::Main::Result::Artist');
__PACKAGE__->has_many('tracks' => 'MyDatabase::Main::Result::Track');

1;