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

20210614131002_add_detection_method_to_vulnerabilities_finding.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc37c5f10203b9954d79016c7d4381b98fd9a1aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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