2021-04-12 12:37:14 +02:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 06:58:28 +01:00
|
|
|
|
2021-04-12 12:37:14 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
2023-08-18 18:20:55 +02:00
|
|
|
# Table name: global_follow_recommendations
|
2021-04-12 12:37:14 +02:00
|
|
|
#
|
|
|
|
# account_id :bigint(8) primary key
|
|
|
|
# rank :decimal(, )
|
|
|
|
# reason :text is an Array
|
|
|
|
#
|
|
|
|
|
|
|
|
class FollowRecommendation < ApplicationRecord
|
2024-02-06 10:08:07 +01:00
|
|
|
include DatabaseViewRecord
|
|
|
|
|
2021-04-12 12:37:14 +02:00
|
|
|
self.primary_key = :account_id
|
2023-08-18 18:20:55 +02:00
|
|
|
self.table_name = :global_follow_recommendations
|
2021-04-12 12:37:14 +02:00
|
|
|
|
2023-04-30 14:06:53 +02:00
|
|
|
belongs_to :account_summary, foreign_key: :account_id, inverse_of: false
|
2023-02-20 02:19:40 +01:00
|
|
|
belongs_to :account
|
2021-04-12 12:37:14 +02:00
|
|
|
|
|
|
|
scope :localized, ->(locale) { joins(:account_summary).merge(AccountSummary.localized(locale)) }
|
|
|
|
end
|