mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-10 08:22:44 +01:00
52b55dabbb
This is lacking tests (and proper icons), but can talk to a debug provider.
13 lines
302 B
Ruby
13 lines
302 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateFaspDebugCallbacks < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :fasp_debug_callbacks do |t|
|
|
t.references :fasp_provider, null: false, foreign_key: true
|
|
t.string :ip
|
|
t.text :request_body
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|