summaryrefslogtreecommitdiff
path: root/db/migrate/20200924035825_add_options_to_dast_scanner_profile.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200924035825_add_options_to_dast_scanner_profile.rb')
-rw-r--r--db/migrate/20200924035825_add_options_to_dast_scanner_profile.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20200924035825_add_options_to_dast_scanner_profile.rb b/db/migrate/20200924035825_add_options_to_dast_scanner_profile.rb
deleted file mode 100644
index 588ce8fada7..00000000000
--- a/db/migrate/20200924035825_add_options_to_dast_scanner_profile.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# 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