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

20230530140534_validate_fk_ci_sources_pipelines_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: 7e92026f21f0ab4081ed25e4e3b8a8e91ace95cf (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class ValidateFkCiSourcesPipelinesPCiBuilds < Gitlab::Database::Migration[2.1]
  def up
    validate_foreign_key :ci_sources_pipelines, nil, name: :temp_fk_be5624bf37_p
  end

  def down
    # no-op
  end
end