mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
547 B
24 lines
547 B
# frozen_string_literal: true
|
|
|
|
class AddHmacToWebhookUrls < ActiveRecord::Migration[8.1]
|
|
class MigrationWebhookUrl < ApplicationRecord
|
|
self.table_name = 'webhook_urls'
|
|
|
|
encrypts :hmac_secret
|
|
end
|
|
|
|
def up
|
|
add_column :webhook_urls, :hmac_secret, :text
|
|
|
|
MigrationWebhookUrl.find_each do |webhook_url|
|
|
webhook_url.update_columns(hmac_secret: WebhookUrls::Signatures.generate_secret)
|
|
end
|
|
|
|
change_column_null :webhook_urls, :hmac_secret, false
|
|
end
|
|
|
|
def down
|
|
remove_column :webhook_urls, :hmac_secret
|
|
end
|
|
end
|