Commit 409322eb authored by Felipe Artur's avatar Felipe Artur

Disable statement timeout in RenameLoginRootNamespaces migration

parent 6967fd0a
...@@ -7,10 +7,14 @@ class RenameLoginRootNamespaces < ActiveRecord::Migration ...@@ -7,10 +7,14 @@ class RenameLoginRootNamespaces < ActiveRecord::Migration
# We're taking over the /login namespace as part of a fix for the Jira integration # We're taking over the /login namespace as part of a fix for the Jira integration
def up def up
rename_root_paths 'login' disable_statement_timeout do
rename_root_paths 'login'
end
end end
def down def down
revert_renames disable_statement_timeout do
revert_renames
end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment