Debugging why sqlt deployment order of views is wrong.
[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 qw(DBIx::Class::Core);
7 use aliased 'DBIx::Class::ResultSource::MultipleTableInheritance';
8
9 __PACKAGE__->table_class(MultipleTableInheritance);
10
11 __PACKAGE__->table('foo');
12
13 __PACKAGE__->add_columns(
14   id => { data_type => 'integer', is_auto_increment => 1 },
15   a => { data_type => 'integer', is_nullable => 1 }
16 );
17
18 __PACKAGE__->set_primary_key('id');
19
20 #__PACKAGE__->belongs_to(
21   #'bar',
22   #'LoadTest::Result::Bar',
23   #{ 'foreign.id' => 'self.a' }
24 #);
25
26 1;