Add default resultclass/resultsetclass to the entire test schema, as I am tired of...
[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' },
9   'serialized' => { data_type => 'text' },
10 );
11 __PACKAGE__->set_primary_key('id');
12
13 1;