Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Serialized.pm
1 package # hide from PAUSE
2     DBICTest::Schema::Serialized;
3
4 use warnings;
5 use strict;
6
7 use base qw/DBICTest::BaseResult/;
8
9 __PACKAGE__->table('serialized');
10 __PACKAGE__->add_columns(
11   'id' => { data_type => 'integer', is_auto_increment => 1 },
12   'serialized' => { data_type => 'text' },
13 );
14 __PACKAGE__->set_primary_key('id');
15
16 1;