Applied patch from Pedro Melo to fix order of components in the example
Jess Robinson [Thu, 17 May 2007 12:56:49 +0000 (12:56 +0000)]
lib/DBIx/Class/InflateColumn/DateTime.pm

index 6b012d8..f92481d 100644 (file)
@@ -14,7 +14,7 @@ Load this component and then declare one or more
 columns to be of the datetime, timestamp or date datatype.
 
   package Event;
-  __PACKAGE__->load_components(qw/Core InflateColumn::DateTime/);
+  __PACKAGE__->load_components(qw/InflateColumn::DateTime Core/);
   __PACKAGE__->add_columns(
     starts_when => { data_type => 'datetime' }
   );