summaryrefslogtreecommitdiff
path: root/db/migrate/20191001040549_add_management_project_id_index_fk_to_clusters.rb
blob: 97253dd1f2d925e0983f370ce239db7bf382fcd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class AddManagementProjectIdIndexFkToClusters < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_foreign_key :clusters, :projects, column: :management_project_id, on_delete: :nullify
    add_concurrent_index :clusters, :management_project_id, where: 'management_project_id IS NOT NULL'
  end

  def down
    remove_concurrent_index :clusters, :management_project_id
    remove_foreign_key_if_exists :clusters, column: :management_project_id
  end
end