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

20210629031900_associate_existing_dast_builds_with_variables.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14b6b9efad33dd846e0764216eb57cd53177550f (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AssociateExistingDastBuildsWithVariables < ActiveRecord::Migration[6.1]
  def up
    # no-op: Must have run before %"15.X" as it is not compatible with decomposed CI database
  end

  def down
    # No-op
  end
end