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

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

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

  PASSIVE_SCAN_ENUM_VALUE = 1

  def change
    add_column :dast_scanner_profiles, :scan_type, :integer, limit: 2, default: PASSIVE_SCAN_ENUM_VALUE, null: false
    add_column :dast_scanner_profiles, :use_ajax_spider, :boolean, default: false, null: false
    add_column :dast_scanner_profiles, :show_debug_messages, :boolean, default: false, null: false
  end
end