summaryrefslogtreecommitdiff
path: root/db/migrate/20180910115836_add_attr_encrypted_columns_to_web_hook.rb
blob: 9757f7fdc79f6e675381d6300fad6080e29be2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class AddAttrEncryptedColumnsToWebHook < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    # rubocop:disable Migration/AddLimitToStringColumns
    add_column :web_hooks, :encrypted_token, :string
    add_column :web_hooks, :encrypted_token_iv, :string

    add_column :web_hooks, :encrypted_url, :string
    add_column :web_hooks, :encrypted_url_iv, :string
    # rubocop:enable Migration/AddLimitToStringColumns
  end
end