debian-mirror-gitlab/db/post_migrate/20220314154235_migrate_vulnerability_approval_rules.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
426 B
Ruby
Raw Normal View History

2022-07-16 23:28:13 +05:30
# 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