18 lines
426 B
Ruby
18 lines
426 B
Ruby
|
# 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
|