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