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

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

class AddTempIndexForUserDetailsFields < Gitlab::Database::Migration[2.0]
  INDEX_NAME = 'tmp_idx_where_user_details_fields_filled'

  disable_ddl_transaction!

  def up
    add_concurrent_index :users, :id, name: INDEX_NAME, where: <<~QUERY
      (COALESCE(linkedin, '') IS DISTINCT FROM '')
      OR (COALESCE(twitter, '') IS DISTINCT FROM '')
      OR (COALESCE(skype, '') IS DISTINCT FROM '')
      OR (COALESCE(website_url, '') IS DISTINCT FROM '')
      OR (COALESCE(location, '') IS DISTINCT FROM '')
      OR (COALESCE(organization, '') IS DISTINCT FROM '')
    QUERY
  end

  def down
    remove_concurrent_index_by_name :users, INDEX_NAME
  end
end