From: Jess Robinson Date: Thu, 17 May 2007 12:56:49 +0000 (+0000) Subject: Applied patch from Pedro Melo to fix order of components in the example X-Git-Tag: v0.08010~157 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=517d5d64cfee2594c6f68d8bf6a498d88ea878f6;p=dbsrgits%2FDBIx-Class.git Applied patch from Pedro Melo to fix order of components in the example --- diff --git a/lib/DBIx/Class/InflateColumn/DateTime.pm b/lib/DBIx/Class/InflateColumn/DateTime.pm index 6b012d8..f92481d 100644 --- a/lib/DBIx/Class/InflateColumn/DateTime.pm +++ b/lib/DBIx/Class/InflateColumn/DateTime.pm @@ -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' } );