Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/db/post_migrate/20180816193530_rename_login_root_namespaces.rb b/db/post_migrate/20180816193530_rename_login_root_namespaces.rb
deleted file mode 100644
index 70db8f46d05..00000000000
--- a/db/post_migrate/20180816193530_rename_login_root_namespaces.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-class RenameLoginRootNamespaces < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
- include Gitlab::Database::RenameReservedPathsMigration::V1
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- # We're taking over the /login namespace as part of a fix for the Jira integration
- def up
- disable_statement_timeout do
- rename_root_paths 'login'
- end
- end
-
- def down
- disable_statement_timeout do
- revert_renames
- end
- end
-end