d7737bdf6dc10412e0af087be8dc3278d507c31d
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / Schema / Serialized.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::Serialized;
3
4 use 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
13 1;