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

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

class AddDeduplicatedFlagIntoSecurityFindingsTable < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :security_findings, :deduplicated, :boolean, default: false, null: false
  end
end