initial commit
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / Schema / Serialized.pm
CommitLineData
b974984a 1package # hide from PAUSE
2 DBICTest::Schema::Serialized;
3
4use base qw/DBICTest::BaseResult/;
5
6__PACKAGE__->table('serialized');
7__PACKAGE__->add_columns(
8 'id' => { data_type => 'integer', is_auto_increment => 1 },
9 'serialized' => { data_type => 'text' },
10);
11__PACKAGE__->set_primary_key('id');
12
131;