Initial commit
[dbsrgits/DBIx-Class-Schema-ResultSetAccessors.git] / t / lib / MyApp2 / Schema / Result / CD.pm
CommitLineData
731e8b3e 1package MyApp2::Schema::Result::CD;
2use base qw/DBIx::Class::Core/;
3
4__PACKAGE__->load_components(qw/InflateColumn::DateTime/);
5__PACKAGE__->table('cd');
6__PACKAGE__->add_columns(qw/ cdid artistid title year /);
7__PACKAGE__->set_primary_key('cdid');
8__PACKAGE__->belongs_to(artist => 'MyApp2::Schema::Result::Artist', 'artistid');
9
101;