added support for timestamps to InflateColumn::DateTime
Matt S Trout [Thu, 22 Jun 2006 22:45:37 +0000 (22:45 +0000)]
lib/DBIx/Class/InflateColumn/DateTime.pm

index db6d3a7..3734b71 100644 (file)
@@ -52,6 +52,7 @@ sub register_column {
   $self->next::method($column, $info, @rest);
   return unless defined($info->{data_type});
   my $type = lc($info->{data_type});
+  $type = 'datetime' if ($type eq 'timestamp');
   if ($type eq 'datetime' || $type eq 'date') {
     my ($parse, $format) = ("parse_${type}", "format_${type}");
     $self->inflate_column(