Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / OneKey.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 DBICTest::Schema::OneKey;
a02675cd 3
4use base 'DBIx::Class::Core';
5
333cce60 6__PACKAGE__->load_components('PK::Auto');
7
11b78bd6 8DBICTest::Schema::OneKey->table('onekey');
0009fa49 9DBICTest::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);
11b78bd6 21DBICTest::Schema::OneKey->set_primary_key('id');
a02675cd 22
23
241;