Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Serialized.pm
CommitLineData
8273e845 1package # hide from PAUSE
c6d74d3e 2 DBICTest::Schema::Serialized;
2957cdf8 3
660cf1be 4use base qw/DBICTest::BaseResult/;
2957cdf8 5
11357d09 6__PACKAGE__->table('serialized');
7__PACKAGE__->add_columns(
31c3800e 8 'id' => { data_type => 'integer', is_auto_increment => 1 },
2957cdf8 9 'serialized' => { data_type => 'text' },
10);
11357d09 11__PACKAGE__->set_primary_key('id');
2957cdf8 12
131;