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

use DBIx::Class 0.07;

use base qw/DBIx::Class/;

__PACKAGE__->load_components(qw/InflateColumn::DateTime 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');

1;