summaryrefslogtreecommitdiff
path: root/db/migrate/20200703121557_remove_f_keys_from_ci_daily_report_results_table.rb
blob: 43b869b007d7856f0c6cf0c49f4e215ad0f38de9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class RemoveFKeysFromCiDailyReportResultsTable < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    with_lock_retries do
      remove_foreign_key_if_exists :ci_daily_report_results, :projects
      remove_foreign_key_if_exists :ci_daily_report_results, :ci_pipelines
    end
  end

  def down
    add_concurrent_foreign_key :ci_daily_report_results, :projects, column: :project_id, on_delete: :cascade
    add_concurrent_foreign_key :ci_daily_report_results, :ci_pipelines, column: :last_pipeline_id, on_delete: :cascade
  end
end