mastodon/db/migrate/20250627132728_create_fasp_follow_recommendations.rb
2025-06-30 13:39:36 +00:00

13 lines
385 B
Ruby

# frozen_string_literal: true
class CreateFaspFollowRecommendations < ActiveRecord::Migration[8.0]
def change
create_table :fasp_follow_recommendations do |t|
t.references :requesting_account, null: false, foreign_key: { to_table: :accounts }
t.references :recommended_account, null: false, foreign_key: { to_table: :accounts }
t.timestamps
end
end
end