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

20230731090319_add_notes_namespace_id_foreign_key.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e06170a506d1dd493d3600e2cc19f8b808093f5 (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 AddNotesNamespaceIdForeignKey < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  INDEX_NAME = 'index_notes_on_namespace_id'

  def up
    add_concurrent_index :notes, :namespace_id, name: INDEX_NAME
    add_concurrent_foreign_key :notes, :namespaces,
      column: :namespace_id,
      on_delete: :cascade
  end

  def down
    remove_foreign_key_if_exists :notes, column: :namespace_id
    remove_concurrent_index_by_name :notes, INDEX_NAME
  end
end