summaryrefslogtreecommitdiff
path: root/db/migrate/20190430142025_create_jira_tracker_data.rb
blob: 2144c60a2679bb7ff6502ff6f6f047d1506884a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true

# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class CreateJiraTrackerData < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  # rubocop:disable Migration/PreventStrings
  def change
    create_table :jira_tracker_data do |t|
      t.references :service, foreign_key: { on_delete: :cascade }, type: :integer, index: true, null: false
      t.timestamps_with_timezone
      t.string :encrypted_url
      t.string :encrypted_url_iv
      t.string :encrypted_api_url
      t.string :encrypted_api_url_iv
      t.string :encrypted_username
      t.string :encrypted_username_iv
      t.string :encrypted_password
      t.string :encrypted_password_iv
      t.string :jira_issue_transition_id
    end
  end
  # rubocop:enable Migration/PreventStrings
end