mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-20 14:31:30 +08:00
7 lines
168 B
Ruby
7 lines
168 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RenameWebhookMethodColumn < ActiveRecord::Migration[6.1]
|
|
def change
|
|
rename_column :webhooks, :method, :http_method
|
|
end
|
|
end
|