Wrap some over-log has statements
Dagfinn Ilmari Mannsåker [Thu, 16 Aug 2012 15:10:41 +0000 (17:10 +0200)]
lib/SQL/Translator/Schema/Constraint.pm
lib/SQL/Translator/Schema/Index.pm

index e5cb69a..0261df7 100644 (file)
@@ -88,7 +88,11 @@ False, so the following are eqivalent:
 
 =cut
 
-has deferrable => ( is => 'rw', coerce => quote_sub(q{ $_[0] ? 1 : 0 }), default => quote_sub(q{ 1 }) );
+has deferrable => (
+    is => 'rw',
+    coerce => quote_sub(q{ $_[0] ? 1 : 0 }),
+    default => quote_sub(q{ 1 }),
+);
 
 =head2 expression
 
index b238e27..8537319 100644 (file)
@@ -101,7 +101,11 @@ Get or set the index's name.
 
 =cut
 
-has name => ( is => 'rw', coerce => quote_sub(q{ defined $_[0] ? $_[0] : '' }), default => quote_sub(q{ '' }) );
+has name => (
+    is => 'rw',
+    coerce => quote_sub(q{ defined $_[0] ? $_[0] : '' }),
+    default => quote_sub(q{ '' }),
+);
 
 =head2 options