Not sure what this part of the test is for, but it breaks custom resultsets, and...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / FourKeys.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 DBICTest::Schema::FourKeys;
a02675cd 3
4use base 'DBIx::Class::Core';
5
11357d09 6__PACKAGE__->table('fourkeys');
7__PACKAGE__->add_columns(
0009fa49 8 'foo' => { data_type => 'integer' },
9 'bar' => { data_type => 'integer' },
10 'hello' => { data_type => 'integer' },
11 'goodbye' => { data_type => 'integer' },
3bd6e3e0 12 'sensors' => { data_type => 'character' },
0009fa49 13);
11357d09 14__PACKAGE__->set_primary_key(qw/foo bar hello goodbye/);
a02675cd 15
11357d09 16__PACKAGE__->has_many(
256e87b0 17 'fourkeys_to_twokeys', 'DBICTest::Schema::FourKeys_to_TwoKeys', {
3bd6e3e0 18 'foreign.f_foo' => 'self.foo',
19 'foreign.f_bar' => 'self.bar',
20 'foreign.f_hello' => 'self.hello',
21 'foreign.f_goodbye' => 'self.goodbye',
22});
23
11357d09 24__PACKAGE__->many_to_many(
3bd6e3e0 25 'twokeys', 'fourkeys_to_twokeys', 'twokeys',
26);
27
a02675cd 281;