aboutsummaryrefslogtreecommitdiffstats
path: root/t/lib/RTest/TestDB/FooBaz.pm
blob: 5a340fbcaa810453332da82a78cc3cd292e50f31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package # hide from PAUSE
  RTest::TestDB::FooBaz;

use Moose;
extends 'DBIx::Class::Core';

__PACKAGE__->table('foo_baz');

__PACKAGE__->add_columns(
  foo => { data_type => 'integer', size => 16 },
  baz => { data_type => 'integer', size => 16 },
);

__PACKAGE__->set_primary_key(qw/foo baz/);

__PACKAGE__->belongs_to('foo' => 'RTest::TestDB::Foo');
__PACKAGE__->belongs_to('baz' => 'RTest::TestDB::Baz');

__PACKAGE__->meta->make_immutable(inline_constructor => 0);

1;