]> git.openstreetmap.org Git - rails.git/commitdiff
Fix ruby 1.9 syntax error caused by space before parens on method call
authorJason Meinzer <jason@bithive.net>
Mon, 2 Jan 2012 23:25:39 +0000 (15:25 -0800)
committerTom Hughes <tom@compton.nu>
Wed, 4 Jan 2012 22:25:53 +0000 (22:25 +0000)
db/migrate/021_move_to_innodb.rb

index 8312dec2c92213b63cff6ea00161ea19b813a6ba..7b56b302ef00c99e4fccecee58e948cb95e542ec 100644 (file)
@@ -16,7 +16,7 @@ class MoveToInnodb < ActiveRecord::Migration
     }
 
     @@conv_tables.each { |tbl|
     }
 
     @@conv_tables.each { |tbl|
-      change_engine (tbl, "InnoDB")
+      change_engine tbl, "InnoDB"
     }
 
     @@ver_tbl.each { |tbl|
     }
 
     @@ver_tbl.each { |tbl|