Update to add myself to contributors and to hide Modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / FourKeys.pm
CommitLineData
11b78bd6 1package DBICTest::Schema::FourKeys;
a02675cd 2
3use base 'DBIx::Class::Core';
4
11b78bd6 5DBICTest::Schema::FourKeys->table('fourkeys');
0009fa49 6DBICTest::Schema::FourKeys->add_columns(
7 'foo' => { data_type => 'integer' },
8 'bar' => { data_type => 'integer' },
9 'hello' => { data_type => 'integer' },
10 'goodbye' => { data_type => 'integer' },
11);
11b78bd6 12DBICTest::Schema::FourKeys->set_primary_key(qw/foo bar hello goodbye/);
a02675cd 13
141;