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

20230530140611_validate_fk_ci_build_needs_p_ci_builds.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6988e1027e5ad36474f7f4375c0eba37200d260c (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class ValidateFkCiBuildNeedsPCiBuilds < Gitlab::Database::Migration[2.1]
  def up
    validate_foreign_key :ci_build_needs, nil, name: :temp_fk_rails_3cf221d4ed_p
  end

  def down
    # no-op
  end
end