mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 06:35:14 +08:00
8 lines
161 B
Ruby
8 lines
161 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddSecretKeyToWebhooks < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
add_column :webhooks, :secret_key, :string
|
||
|
end
|
||
|
end
|