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

20220323130000_add_temp_index_on_null_project_namespace_ids.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e73993065b0c45f39fc15d493a3be14f7014e6e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class AddTempIndexOnNullProjectNamespaceIds < Gitlab::Database::Migration[1.0]
  TMP_INDEX_FOR_NULL_PROJECT_NAMESPACE_ID = 'tmp_index_for_null_project_namespace_id'

  disable_ddl_transaction!

  def up
    add_concurrent_index :projects, :id, name: TMP_INDEX_FOR_NULL_PROJECT_NAMESPACE_ID, where: 'project_namespace_id IS NULL'
  end

  def down
    remove_concurrent_index_by_name :projects, name: TMP_INDEX_FOR_NULL_PROJECT_NAMESPACE_ID
  end
end