summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220314154235_migrate_vulnerability_approval_rules.rb
blob: f9ad2ba4f0caced819760105a4640a62a2f44179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class MigrateVulnerabilityApprovalRules < Gitlab::Database::Migration[2.0]
  restrict_gitlab_migration gitlab_schema: :gitlab_main

  def up
    # no-op
  end

  def down
    # no-op
    # Vulnerability-Check feature has been removed as part of 15.0
  end
end