2018-11-18 17:43:52 -06:00
|
|
|
# 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
|
2018-12-06 10:36:11 -06:00
|
|
|
# last_status_at :datetime
|
2018-11-18 17:43:52 -06:00
|
|
|
#
|
|
|
|
|
|
|
|
class AccountStat < ApplicationRecord
|
2021-06-02 10:41:25 -05:00
|
|
|
self.locking_column = nil
|
2021-07-07 14:13:30 -05:00
|
|
|
self.ignored_columns = %w(lock_version)
|
2021-06-02 10:41:25 -05:00
|
|
|
|
2018-11-18 17:43:52 -06:00
|
|
|
belongs_to :account, inverse_of: :account_stat
|
|
|
|
|
2021-11-18 15:02:08 -06:00
|
|
|
update_index('accounts', :account)
|
2022-05-26 13:32:48 -05:00
|
|
|
|
|
|
|
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
|
2018-11-18 17:43:52 -06:00
|
|
|
end
|