Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / TwoKeys.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 DBICTest::Schema::TwoKeys;
a02675cd 3
4use base 'DBIx::Class::Core';
5
11b78bd6 6DBICTest::Schema::TwoKeys->table('twokeys');
0009fa49 7DBICTest::Schema::TwoKeys->add_columns(
8 'artist' => { data_type => 'integer' },
9 'cd' => { data_type => 'integer' },
10);
11b78bd6 11DBICTest::Schema::TwoKeys->set_primary_key(qw/artist cd/);
a02675cd 12
131;