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

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

class RemoveRequirementsIgnoredColumns < Gitlab::Database::Migration[2.2]
  milestone '16.7'

  disable_ddl_transaction!

  def up
    # no-op to mitigate https://gitlab.com/gitlab-com/gl-infra/production/-/issues/17224
  end

  def down
    # no-op to mitigate https://gitlab.com/gitlab-com/gl-infra/production/-/issues/17224
  end
end