Adding datetime_undef_if_invalid to squelch errors on DateTime inflation of bogus...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Serialized.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::Serialized;
3
4 use base 'DBIx::Class::Core';
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;