summaryrefslogtreecommitdiff
path: root/db/migrate/20180910115836_add_attr_encrypted_columns_to_web_hook.rb
blob: 3341fd5c5935f5365cbc5deb808cbc1869eb6949 (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

  # rubocop:disable Migration/PreventStrings
  def change
    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
  end
  # rubocop:enable Migration/PreventStrings
end