Test split to run against normal rels and helper rels (currently just has_one)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / CD.pm
1 package DBICTest::Schema::CD;
2
3 use base 'DBIx::Class::Core';
4
5 DBICTest::Schema::CD->table('cd');
6 DBICTest::Schema::CD->add_columns(qw/cdid artist title year/);
7 DBICTest::Schema::CD->set_primary_key('cdid');
8
9 1;