0642e8b3effb9fcccffdb2d4cbe47c168bd5bc6b
[dbsrgits/DBIx-Class.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;