Commit 38b5d1cd authored by Mayra Cabrera's avatar Mayra Cabrera

Merge branch '325938-drop-jira-proxy-setting-columns' into 'master'

Drop Jira proxy setting columns

See merge request gitlab-org/gitlab!60123
parents 8eed9590 0a847b65
---
title: Drop Jira proxy setting columns
merge_request: 60123
author:
type: other
# frozen_string_literal: true
class RemoveProxySettingsToJiraTrackerData < ActiveRecord::Migration[6.0]
def change
remove_column :jira_tracker_data, :encrypted_proxy_address, :text
remove_column :jira_tracker_data, :encrypted_proxy_address_iv, :text
remove_column :jira_tracker_data, :encrypted_proxy_port, :text
remove_column :jira_tracker_data, :encrypted_proxy_port_iv, :text
remove_column :jira_tracker_data, :encrypted_proxy_username, :text
remove_column :jira_tracker_data, :encrypted_proxy_username_iv, :text
remove_column :jira_tracker_data, :encrypted_proxy_password, :text
remove_column :jira_tracker_data, :encrypted_proxy_password_iv, :text
end
end
6b508f1a48402aa2db3862e2e31ee4ccb851f535ed59f9b949ac1bad0ff2f0e1
\ No newline at end of file
......@@ -14016,14 +14016,6 @@ CREATE TABLE jira_tracker_data (
deployment_type smallint DEFAULT 0 NOT NULL,
vulnerabilities_issuetype text,
vulnerabilities_enabled boolean DEFAULT false NOT NULL,
encrypted_proxy_address text,
encrypted_proxy_address_iv text,
encrypted_proxy_port text,
encrypted_proxy_port_iv text,
encrypted_proxy_username text,
encrypted_proxy_username_iv text,
encrypted_proxy_password text,
encrypted_proxy_password_iv text,
jira_issue_transition_automatic boolean DEFAULT false NOT NULL,
CONSTRAINT check_0bf84b76e9 CHECK ((char_length(vulnerabilities_issuetype) <= 255)),
CONSTRAINT check_214cf6a48b CHECK ((char_length(project_key) <= 255))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment