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

20201102112206_rename_sitemap_namespace.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2e610d68dbad60760aae0f8a0efe45ebe8cdd28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

class RenameSitemapNamespace < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers
  include Gitlab::Database::RenameReservedPathsMigration::V1

  DOWNTIME = false

  disable_ddl_transaction!

  # We're taking over the /sitemap namespace
  # since it's necessary for the default behavior of Sitemaps
  def up
    disable_statement_timeout do
      rename_root_paths(['sitemap'])
    end
  end

  def down
    disable_statement_timeout do
      revert_renames
    end
  end
end