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