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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/project_services/jira_tracker_data.rb')
-rw-r--r--app/models/project_services/jira_tracker_data.rb21
1 files changed, 12 insertions, 9 deletions
diff --git a/app/models/project_services/jira_tracker_data.rb b/app/models/project_services/jira_tracker_data.rb
index 6cbcb1550c1..2c145abf5c9 100644
--- a/app/models/project_services/jira_tracker_data.rb
+++ b/app/models/project_services/jira_tracker_data.rb
@@ -2,20 +2,23 @@
class JiraTrackerData < ApplicationRecord
include Services::DataFields
+ include IgnorableColumns
+
+ ignore_columns %i[
+ encrypted_proxy_address
+ encrypted_proxy_address_iv
+ encrypted_proxy_port
+ encrypted_proxy_port_iv
+ encrypted_proxy_username
+ encrypted_proxy_username_iv
+ encrypted_proxy_password
+ encrypted_proxy_password_iv
+ ], remove_with: '14.0', remove_after: '2021-05-22'
attr_encrypted :url, encryption_options
attr_encrypted :api_url, encryption_options
attr_encrypted :username, encryption_options
attr_encrypted :password, encryption_options
- attr_encrypted :proxy_address, encryption_options
- attr_encrypted :proxy_port, encryption_options
- attr_encrypted :proxy_username, encryption_options
- attr_encrypted :proxy_password, encryption_options
-
- validates :proxy_address, length: { maximum: 2048 }
- validates :proxy_port, length: { maximum: 5 }
- validates :proxy_username, length: { maximum: 255 }
- validates :proxy_password, length: { maximum: 255 }
enum deployment_type: { unknown: 0, server: 1, cloud: 2 }, _prefix: :deployment
end