FIX: Use 60 minutes, not 60 seconds for column dropper
This commit is contained in:
parent
931caa4335
commit
33340071e7
|
@ -25,7 +25,7 @@ class ColumnDropper
|
||||||
|
|
||||||
if ActiveRecord::Base.exec_sql(sql, table: table,
|
if ActiveRecord::Base.exec_sql(sql, table: table,
|
||||||
columns: columns,
|
columns: columns,
|
||||||
delay: "#{delay.to_i || 0} seconds",
|
delay: "#{delay.to_i || 0} minutes",
|
||||||
after_migration: after_migration).to_a.length > 0
|
after_migration: after_migration).to_a.length > 0
|
||||||
on_drop&.call
|
on_drop&.call
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue