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

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

class ValidateFkCiBuildReportResultsPCiBuilds < Gitlab::Database::Migration[2.1]
  def up
    validate_foreign_key :ci_build_report_results, nil, name: :temp_fk_rails_16cb1ff064_p
  end

  def down
    # no-op
  end
end