Disable statement timeout in RenameLoginRootNamespaces migration

This commit is contained in:
Felipe Artur 2018-09-06 11:17:10 -03:00
parent 6967fd0aa5
commit 409322eb0e
1 changed files with 6 additions and 2 deletions

View File

@ -7,10 +7,14 @@ class RenameLoginRootNamespaces < ActiveRecord::Migration
# We're taking over the /login namespace as part of a fix for the Jira integration
def up
rename_root_paths 'login'
disable_statement_timeout do
rename_root_paths 'login'
end
end
def down
revert_renames
disable_statement_timeout do
revert_renames
end
end
end