Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / OneKey.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::OneKey;
3
4 use base 'DBIx::Class::Core';
5
6 __PACKAGE__->load_components('PK::Auto');
7
8 DBICTest::Schema::OneKey->table('onekey');
9 DBICTest::Schema::OneKey->add_columns(
10   'id' => {
11     data_type => 'integer',
12     is_auto_increment => 1,
13   },
14   'artist' => {
15     data_type => 'integer',
16   },
17   'cd' => {
18     data_type => 'integer',
19   },
20 );
21 DBICTest::Schema::OneKey->set_primary_key('id');
22
23
24 1;