summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220801150028_add_partial_trigram_index_for_issue_description.rb
blob: 79f25718e156b720a97fcc2c43599eaae7bd5c01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

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

  INDEX_NAME = 'index_issues_on_description_trigram_non_latin'

  def up
    add_concurrent_index :issues, :description,
      name: INDEX_NAME,
      using: :gin, opclass: { description: :gin_trgm_ops },
      where: "title NOT SIMILAR TO '[\\u0000-\\u218F]*' OR description NOT SIMILAR TO '[\\u0000-\\u218F]*'"
  end

  def down
    remove_concurrent_index_by_name :issues, INDEX_NAME
  end
end