mastodon/db/migrate/20241206131513_create_fasp_debug_callbacks.rb
David Roetzel 52b55dabbb
First tiny steps towards FASP integration
This is lacking tests (and proper icons), but can talk
to a debug provider.
2025-01-06 08:58:07 +01:00

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