summaryrefslogtreecommitdiff
path: root/db/migrate/20220126191624_add_scan_file_path_to_dast_site_profile.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20220126191624_add_scan_file_path_to_dast_site_profile.rb')
-rw-r--r--db/migrate/20220126191624_add_scan_file_path_to_dast_site_profile.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/db/migrate/20220126191624_add_scan_file_path_to_dast_site_profile.rb b/db/migrate/20220126191624_add_scan_file_path_to_dast_site_profile.rb
new file mode 100644
index 00000000000..eab02663e26
--- /dev/null
+++ b/db/migrate/20220126191624_add_scan_file_path_to_dast_site_profile.rb
@@ -0,0 +1,14 @@
+# frozen_string_literal: true
+
+class AddScanFilePathToDastSiteProfile < Gitlab::Database::Migration[2.0]
+ # rubocop:disable Migration/AddLimitToTextColumns
+ # limit is added in 20221012135524_add_scan_file_path_limit_for_dast_site_profile
+ def up
+ add_column :dast_site_profiles, :scan_file_path, :text
+ end
+ # rubocop:enable Migration/AddLimitToTextColumns
+
+ def down
+ remove_column :dast_site_profiles, :scan_file_path, :text
+ end
+end