debian-mirror-gitlab/db/migrate/20220605170009_add_url_vars_to_web_hook.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
240 B
Ruby
Raw Normal View History

2022-07-23 23:45:48 +05:30
# 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