summaryrefslogtreecommitdiff
path: root/db/migrate/20210223053451_add_branch_name_to_dast_profile.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210223053451_add_branch_name_to_dast_profile.rb')
-rw-r--r--db/migrate/20210223053451_add_branch_name_to_dast_profile.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/db/migrate/20210223053451_add_branch_name_to_dast_profile.rb b/db/migrate/20210223053451_add_branch_name_to_dast_profile.rb
deleted file mode 100644
index 311e809103f..00000000000
--- a/db/migrate/20210223053451_add_branch_name_to_dast_profile.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-# frozen_string_literal: true
-
-class AddBranchNameToDastProfile < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- with_lock_retries do
- add_column :dast_profiles, :branch_name, :text
- end
-
- add_text_limit :dast_profiles, :branch_name, 255
- end
-
- def down
- with_lock_retries do
- remove_column :dast_profiles, :branch_name
- end
- end
-end