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

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

class AddReportTypeToVulnerabilities < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :vulnerabilities, :report_type, :integer, limit: 2
  end
end