Merge commit 'c357a7f8d697ede4df4be74456b0497118c9d049' into glitch-soc/merge-upstream

This commit is contained in:
Claire
2025-06-30 17:52:22 +02:00
154 changed files with 1168 additions and 826 deletions

View File

@@ -0,0 +1,12 @@
# 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