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

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

class ReplacePCiRunnerMachineBuildsForeignKey < Gitlab::Database::Migration[2.1]
  def up
    # This migration was skipped in the ci database on gitlab.com as part of
    # https://gitlab.com/gitlab-com/gl-infra/production/-/issues/14888
  end

  def down
    # This migration was skipped in the ci database on gitlab.com as part of
    # https://gitlab.com/gitlab-com/gl-infra/production/-/issues/14888
  end
end