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

20201201163227_add_finding_uuid_to_vulnerability_feedback.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2e13806000168101d8e553632946393c53945be (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class AddFindingUuidToVulnerabilityFeedback < ActiveRecord::Migration[6.0]
  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  def change
    add_column :vulnerability_feedback, :finding_uuid, :uuid
  end
end