summaryrefslogtreecommitdiff
path: root/db/migrate/20190415172035_update_insights_foreign_keys.rb
blob: 5d3aa4c05e9fbdf451162d5f1ffe44e275316bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

# rubocop: disable Migration/AddConcurrentForeignKey

class UpdateInsightsForeignKeys < ActiveRecord::Migration[5.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    remove_foreign_key_if_exists(:insights, column: :project_id)
    add_foreign_key(:insights, :projects, column: :project_id, on_delete: :cascade)

    remove_foreign_key_if_exists(:insights, column: :namespace_id)
    add_foreign_key(:insights, :namespaces, column: :namespace_id, on_delete: :cascade)
  end

  def down
    remove_foreign_key_if_exists(:insights, column: :namespace_id)
    add_foreign_key(:insights, :namespaces, column: :namespace_id)

    remove_foreign_key_if_exists(:insights, column: :project_id)
    add_foreign_key(:insights, :projects, column: :project_id)
  end
end