mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-11 23:13:16 +00:00
13 lines
385 B
Ruby
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
|