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

20230524135815_replace_ci_job_variables_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: baac0d495a7bedfb130dbeca89b4707361831419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class ReplaceCiJobVariablesForeignKey < 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