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