Files
clientsflow/research/chatwoot/db/migrate/20251010143218_add_name_to_webhooks.rb

6 lines
131 B
Ruby

class AddNameToWebhooks < ActiveRecord::Migration[7.1]
def change
add_column :webhooks, :name, :string, null: true
end
end