super basic test for dm::sqlt
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / Schema / FourKeys.pm
CommitLineData
b974984a 1package # hide from PAUSE
2 DBICTest::Schema::FourKeys;
3
4use base qw/DBICTest::BaseResult/;
5
6__PACKAGE__->table('fourkeys');
7__PACKAGE__->add_columns(
8 'foo' => { data_type => 'integer' },
9 'bar' => { data_type => 'integer' },
10 'hello' => { data_type => 'integer' },
11 'goodbye' => { data_type => 'integer' },
12 'sensors' => { data_type => 'character', size => 10 },
13 'read_count' => { data_type => 'integer', is_nullable => 1 },
14);
15__PACKAGE__->set_primary_key(qw/foo bar hello goodbye/);
16
17__PACKAGE__->has_many(
18 'fourkeys_to_twokeys', 'DBICTest::Schema::FourKeys_to_TwoKeys', {
19 'foreign.f_foo' => 'self.foo',
20 'foreign.f_bar' => 'self.bar',
21 'foreign.f_hello' => 'self.hello',
22 'foreign.f_goodbye' => 'self.goodbye',
23});
24
25__PACKAGE__->many_to_many(
26 'twokeys', 'fourkeys_to_twokeys', 'twokeys',
27);
28
291;