X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FEvent.pm;h=29bf11dfc4509a8ac98f46353396f27e3194dd97;hb=1327f05075385498a3e6213c068d2f4e765fb0a4;hp=d5bd0be78858ebe614878ba49a5978f3c23c28cc;hpb=157ce0cfdee831491de41596b44e19cd7b45dfeb;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/lib/DBICTest/Schema/Event.pm b/t/lib/DBICTest/Schema/Event.pm index d5bd0be..29bf11d 100644 --- a/t/lib/DBICTest/Schema/Event.pm +++ b/t/lib/DBICTest/Schema/Event.pm @@ -11,8 +11,8 @@ __PACKAGE__->table('event'); __PACKAGE__->add_columns( id => { data_type => 'integer', is_auto_increment => 1 }, -# this MUST be 'date' for the Firebird tests - starts_at => { data_type => 'date' }, +# this MUST be 'date' for the Firebird and SQLAnywhere tests + starts_at => { data_type => 'date', datetime_undef_if_invalid => 1 }, created_on => { data_type => 'timestamp' }, varchar_date => { data_type => 'varchar', size => 20, is_nullable => 1 },