mastodon/db/migrate/20241206131513_create_fasp_debug_callbacks.rb
2025-03-28 12:16:40 +00:00

13 lines
328 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, null: false
t.text :request_body, null: false
t.timestamps
end
end
end