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