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