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