coerce a Str to ArrayRef
Justin Hunter [Tue, 9 Feb 2010 06:21:45 +0000 (22:21 -0800)]
lib/SQL/Translator/Types.pm

index 89dc8cc..6e66ee2 100644 (file)
@@ -32,6 +32,8 @@ class SQL::Translator::Types {
     coerce Trigger, from HashRef, via { SQL::Translator::Object::Trigger->new($_) };
     coerce View, from HashRef, via { SQL::Translator::Object::View->new($_) };
 
+    coerce ArrayRef, from Str, via { [ $_ ] };
+
     subtype MatchType, as Str, where { /^(full|partial|simple)$/ || $_ eq '' };
     coerce MatchType, from Str, via { lc $_ };