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