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