scinote-web/db/migrate/20211103115450_add_secret_key_to_webhooks.rb

8 lines
161 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddSecretKeyToWebhooks < ActiveRecord::Migration[6.1]
def change
add_column :webhooks, :secret_key, :string
end
end