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