account_stat.rb 903 B

1234567891011121314151617181920212223242526272829303132333435
  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: account_stats
  5. #
  6. # id :bigint(8) not null, primary key
  7. # account_id :bigint(8) not null
  8. # statuses_count :bigint(8) default(0), not null
  9. # following_count :bigint(8) default(0), not null
  10. # followers_count :bigint(8) default(0), not null
  11. # created_at :datetime not null
  12. # updated_at :datetime not null
  13. # last_status_at :datetime
  14. #
  15. class AccountStat < ApplicationRecord
  16. self.locking_column = nil
  17. self.ignored_columns = %w(lock_version)
  18. belongs_to :account, inverse_of: :account_stat
  19. update_index('accounts', :account)
  20. def following_count
  21. [attributes['following_count'], 0].max
  22. end
  23. def followers_count
  24. [attributes['followers_count'], 0].max
  25. end
  26. def statuses_count
  27. [attributes['statuses_count'], 0].max
  28. end
  29. end