X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FEvent.pm;h=22b655e623997d6476b0a28f3a905ca61b3fa195;hb=65b386dfedd73d8b6e98d2f52039280fc63a8e7d;hp=c56c1bdb0460aa921a540791cefdafe815db99ae;hpb=76d51f04fff72dac109ac8533edbf902b4a126f6;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/Event.pm b/t/lib/DBICTest/Schema/Event.pm index c56c1bd..22b655e 100644 --- a/t/lib/DBICTest/Schema/Event.pm +++ b/t/lib/DBICTest/Schema/Event.pm @@ -15,6 +15,7 @@ __PACKAGE__->add_columns( 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, is_nullable => 1 }, + ts_without_tz => { data_type => 'datetime', is_nullable => 1 }, # used in EventTZPg ); __PACKAGE__->set_primary_key('id');