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

20230530140521_validate_fk_ci_unit_test_failures_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: 948d9a837a59262f213430662bd6ad7edc30c22c (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class ValidateFkCiUnitTestFailuresPCiBuilds < Gitlab::Database::Migration[2.1]
  def up
    validate_foreign_key :ci_unit_test_failures, nil, name: :temp_fk_9e0fc58930_p
  end

  def down
    # no-op
  end
end