summaryrefslogtreecommitdiff
path: root/db/post_migrate/20180305100050_remove_permanent_from_redirect_routes.rb
blob: 15c052da99be175d1984825b527fd05de60aef6f (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
25
26
27
28
29
30
31
32
33
34
35
36
37
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class RemovePermanentFromRedirectRoutes < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  disable_ddl_transaction!

  INDEX_NAME_PERM = "index_redirect_routes_on_path_text_pattern_ops_where_permanent"
  INDEX_NAME_TEMP = "index_redirect_routes_on_path_text_pattern_ops_where_temporary"

  def up
    # These indexes were created on Postgres only in:
    # ReworkRedirectRoutesIndexes:
    # https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/16211
    if Gitlab::Database.postgresql?
      disable_statement_timeout do
        execute "DROP INDEX CONCURRENTLY IF EXISTS #{INDEX_NAME_PERM};"
        execute "DROP INDEX CONCURRENTLY IF EXISTS #{INDEX_NAME_TEMP};"
      end
    end

    remove_column(:redirect_routes, :permanent)
  end

  def down
    add_column(:redirect_routes, :permanent, :boolean)

    if Gitlab::Database.postgresql?
      disable_statement_timeout do
        execute("CREATE INDEX CONCURRENTLY #{INDEX_NAME_PERM} ON redirect_routes (lower(path) varchar_pattern_ops) where (permanent);")
        execute("CREATE INDEX CONCURRENTLY #{INDEX_NAME_TEMP} ON redirect_routes (lower(path) varchar_pattern_ops) where (not permanent or permanent is null) ;")
      end
    end
  end
end