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
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
belongs_to :account_summary, foreign_key: :account_id
|
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)) }
|
2021-05-05 20:04:52 +00:00
|
|
|
|
|
|
|
def self.refresh
|
2021-05-09 08:39:29 +00:00
|
|
|
Scenic.database.refresh_materialized_view(table_name, concurrently: false, cascade: false)
|
2021-05-05 20:04:52 +00:00
|
|
|
end
|
2021-04-12 10:37:14 +00:00
|
|
|
|
|
|
|
def readonly?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|