Initial commit
[dbsrgits/DBIx-Class-Schema-ResultSetAccessors.git] / t / lib / MyApp2 / Schema / Result / Artist.pm
CommitLineData
731e8b3e 1package MyApp2::Schema::Result::Artist;
2use base qw/DBIx::Class::Core/;
3
4__PACKAGE__->table('artist');
5__PACKAGE__->add_columns(qw/ artistid name /);
6__PACKAGE__->set_primary_key('artistid');
7__PACKAGE__->has_many(cds => 'MyApp2::Schema::Result::CD', 'artistid');
8
91;