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