Fix the silly mistake responsible for the drama around c9733800
[dbsrgits/DBIx-Class.git] / t / lib / PrefetchBug / Left.pm
CommitLineData
a48693f4 1package PrefetchBug::Left;
2
3use strict;
4use warnings;
5
6use base 'DBIx::Class::Core';
7
8__PACKAGE__->table('prefetchbug_left');
9__PACKAGE__->add_columns(
10 id => { data_type => 'integer', is_auto_increment => 1 },
11);
12
13__PACKAGE__->set_primary_key('id');
14
15__PACKAGE__->has_many(
16 prefetch_leftright => 'PrefetchBug::LeftRight',
17 'left_id'
18);
19
201;