summaryrefslogtreecommitdiff
path: root/db/migrate/20200911121048_add_pages_deployment_ci_build_foreign_key.rb
blob: 83f38b2fae30792e537f4435a17a8328fc9ba810 (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 AddPagesDeploymentCiBuildForeignKey < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      add_foreign_key :pages_deployments, :ci_builds, column: :ci_build_id, on_delete: :nullify
    end
  end

  def down
    with_lock_retries do
      remove_foreign_key :pages_deployments, column: :ci_build_id
    end
  end
end