trivial test cleanup
[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
11357d09 6__PACKAGE__->table('serialized');
7__PACKAGE__->add_columns(
2957cdf8 8 'id' => { data_type => 'integer' },
9 'serialized' => { data_type => 'text' },
10);
11357d09 11__PACKAGE__->set_primary_key('id');
2957cdf8 12
131;