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
|
|
|
|
#
|
|
|
|
# Table name: follow_recommendations
|
|
|
|
#
|
|
|
|
# account_id :bigint(8) primary key
|
|
|
|
# rank :decimal(, )
|
|
|
|
# reason :text is an Array
|
|
|
|
#
|
|
|
|
|
|
|
|
class FollowRecommendation < ApplicationRecord
|
|
|
|
self.primary_key = :account_id
|
|
|
|
|
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)) }
|
2021-05-05 13:04:52 -07:00
|
|
|
|
|
|
|
def self.refresh
|
2021-05-09 01:39:29 -07:00
|
|
|
Scenic.database.refresh_materialized_view(table_name, concurrently: false, cascade: false)
|
2021-05-05 13:04:52 -07:00
|
|
|
end
|
2021-04-12 03:37:14 -07:00
|
|
|
|
|
|
|
def readonly?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|