Merge 'DBIx-Class-current' into 'reorganize_tests'
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / TwoKeys.pm
1 package # hide from PAUSE
2     DBICTest::Schema::TwoKeys;
3
4 use base 'DBIx::Class::Core';
5
6 DBICTest::Schema::TwoKeys->table('twokeys');
7 DBICTest::Schema::TwoKeys->add_columns(
8   'artist' => { data_type => 'integer' },
9   'cd' => { data_type => 'integer' },
10 );
11 DBICTest::Schema::TwoKeys->set_primary_key(qw/artist cd/);
12
13 1;