Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Serialized.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::Serialized;
3
4 use base 'DBIx::Class::Core';
5
6 DBICTest::Schema::Serialized->table('serialized');
7 DBICTest::Schema::Serialized->add_columns(
8   'id' => { data_type => 'integer' },
9   'serialized' => { data_type => 'text' },
10 );
11 DBICTest::Schema::Serialized->set_primary_key('id');
12
13 1;