debian-mirror-gitlab/db/migrate/20210614131002_add_detection_method_to_vulnerabilities_finding.rb
2021-09-04 01:27:46 +05:30

18 lines
425 B
Ruby

# frozen_string_literal: true
class AddDetectionMethodToVulnerabilitiesFinding < ActiveRecord::Migration[6.1]
include Gitlab::Database::MigrationHelpers
def up
with_lock_retries do
add_column :vulnerability_occurrences, :detection_method, :smallint, null: false, default: 0
end
end
def down
with_lock_retries do
remove_column :vulnerability_occurrences, :detection_method
end
end
end