Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220605170009_add_url_vars_to_web_hook.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 207b0fc10c2c1e5fd4dd3da1f5e4a8928324b20d (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class AddUrlVarsToWebHook < Gitlab::Database::Migration[2.0]
  def change
    add_column :web_hooks, :encrypted_url_variables, :binary
    add_column :web_hooks, :encrypted_url_variables_iv, :binary
  end
end