OK, sequences finally working.
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / LoadTest / Result / Foo.pm
1 package    # hide from PAUSE
2     LoadTest::Result::Foo;
3
4 use strict;
5 use warnings;
6 use parent 'DBIx::Class::Core';
7 use aliased 'DBIx::Class::ResultSource::MultipleTableInheritance' => 'MTI';
8
9 __PACKAGE__->table_class(MTI);
10 __PACKAGE__->table('foo');
11
12 __PACKAGE__->add_columns(
13     id => { data_type => 'integer', is_auto_increment => 1 },
14     a  => { data_type => 'integer', is_nullable       => 1 }
15 );
16
17 __PACKAGE__->set_primary_key('id');
18
19 __PACKAGE__->belongs_to( 'bar', 'LoadTest::Result::Bar',
20     { 'foreign.id' => 'self.a' } );
21
22 1;