summaryrefslogtreecommitdiff
path: root/db/post_migrate/20180816193530_rename_login_root_namespaces.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20180816193530_rename_login_root_namespaces.rb')
-rw-r--r--db/post_migrate/20180816193530_rename_login_root_namespaces.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/db/post_migrate/20180816193530_rename_login_root_namespaces.rb b/db/post_migrate/20180816193530_rename_login_root_namespaces.rb
new file mode 100644
index 00000000000..60cec24eed6
--- /dev/null
+++ b/db/post_migrate/20180816193530_rename_login_root_namespaces.rb
@@ -0,0 +1,16 @@
+# frozen_string_literal: true
+class RenameLoginRootNamespaces < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+ include Gitlab::Database::RenameReservedPathsMigration::V1
+
+ DOWNTIME = false
+
+ # We're taking over the /login namespace as part of a fix for the Jira integration
+ def up
+ rename_root_paths 'login'
+ end
+
+ def down
+ revert_renames
+ end
+end