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

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

  DOWNTIME = false

  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
end