updated InflateColumn::DateTime docs and Changes
Matt S Trout [Mon, 19 Jun 2006 13:05:48 +0000 (13:05 +0000)]
Changes
lib/DBIx/Class/InflateColumn/DateTime.pm

diff --git a/Changes b/Changes
index afcb69e..de8a1f5 100644 (file)
--- a/Changes
+++ b/Changes
@@ -3,6 +3,7 @@ Revision history for DBIx::Class
 0.06999_03 at some point
         - Changed join merging to not create a rel_2 alias when adding a join
           that already exists in a parent resultset
+        - InflateColumn::DateTime supports date as well as datetime
 
 0.06999_02 2006-06-09 23:58:33
         - Fixed up POD::Coverage tests, filled in some POD holes
index 6ae4d42..db6d3a7 100644 (file)
@@ -6,12 +6,12 @@ use base qw/DBIx::Class/;
 
 =head1 NAME
 
-DBIx::Class::InflateColumn::DateTime - Auto-create DateTime objects from datetime columns.
+DBIx::Class::InflateColumn::DateTime - Auto-create DateTime objects from date and datetime columns.
 
 =head1 SYNOPSIS
 
 Load this component and then declare one or more 
-columns to be of the datetime datatype.
+columns to be of the datetime or date datatype.
 
   package Event;
   __PACKAGE__->load_components(qw/InflateColumn::DateTime/);
@@ -29,7 +29,9 @@ Then you can treat the specified column as a L<DateTime> object.
 This module figures out the type of DateTime::Format::* class to 
 inflate/deflate with based on the type of DBIx::Class::Storage::DBI::* 
 that you are using.  If you switch from one database to a different 
-one your code will continue to work without modification.
+one your code should continue to work without modification (though note
+that this feature is new as of 0.07, so it may not be perfect yet - bug
+reports to the list very much welcome).
 
 =cut