summaryrefslogtreecommitdiff
path: root/db/migrate/20220119220620_add_scan_method_to_dast_site_profile.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20220119220620_add_scan_method_to_dast_site_profile.rb')
-rw-r--r--db/migrate/20220119220620_add_scan_method_to_dast_site_profile.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20220119220620_add_scan_method_to_dast_site_profile.rb b/db/migrate/20220119220620_add_scan_method_to_dast_site_profile.rb
new file mode 100644
index 00000000000..f7b7580d673
--- /dev/null
+++ b/db/migrate/20220119220620_add_scan_method_to_dast_site_profile.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+class AddScanMethodToDastSiteProfile < Gitlab::Database::Migration[1.0]
+ def up
+ add_column :dast_site_profiles, :scan_method, :integer, limit: 2, default: 0, null: false
+ end
+
+ def down
+ remove_column :dast_site_profiles, :scan_method
+ end
+end