Fix the silly mistake responsible for the drama around c9733800
[dbsrgits/DBIx-Class.git] / t / lib / PrefetchBug / Right.pm
CommitLineData
a48693f4 1package
2 PrefetchBug::Right;
3
4use strict;
5use warnings;
6
7use base 'DBIx::Class::Core';
8
d5907140 9__PACKAGE__->table('prefetchbug_right');
a48693f4 10__PACKAGE__->add_columns(qw/ id name category description propagates locked/);
11__PACKAGE__->set_primary_key('id');
12
13__PACKAGE__->has_many('prefetch_leftright', 'PrefetchBug::LeftRight', 'right_id');
141;