Update to add myself to contributors and to hide Modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Plain / Test.pm
CommitLineData
50041f3c 1package DBICTest::Plain::Test;
2
3use base 'DBIx::Class::Core';
4
5__PACKAGE__->table('test');
6__PACKAGE__->add_columns(
7 'id' => {
8 data_type => 'integer',
9 is_auto_increment => 1
10 },
11 'name' => {
12 data_type => 'varchar',
13 },
14);
15__PACKAGE__->set_primary_key('id');
16
171;