You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
# frozen_string_literal: true |
|
|
|
# == Schema Information |
|
# |
|
# Table name: account_stats |
|
# |
|
# id :bigint(8) not null, primary key |
|
# account_id :bigint(8) not null |
|
# statuses_count :bigint(8) default(0), not null |
|
# following_count :bigint(8) default(0), not null |
|
# followers_count :bigint(8) default(0), not null |
|
# created_at :datetime not null |
|
# updated_at :datetime not null |
|
# last_status_at :datetime |
|
# |
|
|
|
class AccountStat < ApplicationRecord |
|
self.locking_column = nil |
|
self.ignored_columns += %w(lock_version) |
|
|
|
belongs_to :account, inverse_of: :account_stat |
|
|
|
scope :by_recent_status, -> { order(arel_table[:last_status_at].desc.nulls_last) } |
|
scope :without_recent_activity, -> { where(last_status_at: [nil, ...1.month.ago]) } |
|
|
|
update_index('accounts', :account) |
|
|
|
def following_count |
|
[attributes['following_count'], 0].max |
|
end |
|
|
|
def followers_count |
|
[attributes['followers_count'], 0].max |
|
end |
|
|
|
def statuses_count |
|
[attributes['statuses_count'], 0].max |
|
end |
|
end
|
|
|