X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FEvent.pm;h=0c025686510bd7a43d341a6881548a4776c43e0f;hb=a0dd86798d8077ff1035441888165367b45572e5;hp=063df6f219616d6a9cf1d9b32babd4d896b5dfeb;hpb=a085381e61284d46d374ada169f52ae6e35fc9bb;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/Event.pm b/t/lib/DBICTest/Schema/Event.pm index 063df6f..0c02568 100644 --- a/t/lib/DBICTest/Schema/Event.pm +++ b/t/lib/DBICTest/Schema/Event.pm @@ -14,7 +14,7 @@ __PACKAGE__->add_columns( created_on => { data_type => 'timestamp' }, varchar_date => { data_type => 'varchar', inflate_date => 1, size => 20, is_nullable => 1 }, varchar_datetime => { data_type => 'varchar', inflate_datetime => 1, size => 20, is_nullable => 1 }, - skip_inflation => { data_type => 'datetime', inflate_datetime => 0, size => 20, is_nullable => 1 }, + skip_inflation => { data_type => 'datetime', inflate_datetime => 0, is_nullable => 1 }, ); __PACKAGE__->set_primary_key('id');