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