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