Standardize examples/docs on Schema::Loader schema naming
[dbsrgits/DBIx-Class.git] / examples / Schema / MyApp / Schema / Result / Artist.pm
CommitLineData
a5bd5d88 1package MyApp::Schema::Result::Artist;
d88ecca6 2
3use warnings;
4use strict;
5
6use base qw/DBIx::Class::Core/;
7
0c337847 8__PACKAGE__->table('artist');
d88ecca6 9
0c337847 10__PACKAGE__->add_columns(qw/ artistid name /);
d88ecca6 11
0c337847 12__PACKAGE__->set_primary_key('artistid');
d88ecca6 13
a5bd5d88 14__PACKAGE__->has_many('cds' => 'MyApp::Schema::Result::Cd');
0c337847 15
161;
17