summaryrefslogtreecommitdiff
path: root/db/post_migrate/20221019195754_disable_fastupdate_on_issues_description_gin_index.rb
blob: 8822cb3b414168085c3bbfc78645da2750f6d015 (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
# frozen_string_literal: true

class DisableFastupdateOnIssuesDescriptionGinIndex < Gitlab::Database::Migration[2.0]
  disable_ddl_transaction!

  INDEX_NAME = 'index_issues_on_description_trigram'

  def up
    return unless index_exists_by_name?(:issues, INDEX_NAME)

    with_lock_retries do
      execute <<~SQL
        ALTER INDEX #{INDEX_NAME} SET ( fastupdate = false ) ;
      SQL
    end
  end

  def down
    return unless index_exists_by_name?(:issues, INDEX_NAME)

    with_lock_retries do
      execute <<~SQL
        ALTER INDEX #{INDEX_NAME} RESET ( fastupdate ) ;
      SQL
    end
  end
end