2018-11-18 23:43:52 +00: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 16:36:11 +00:00
|
|
|
# last_status_at :datetime
|
2018-11-18 23:43:52 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
class AccountStat < ApplicationRecord
|
2021-06-02 16:41:25 +01:00
|
|
|
self.locking_column = nil
|
2021-07-07 20:13:30 +01:00
|
|
|
self.ignored_columns = %w(lock_version)
|
2021-06-02 16:41:25 +01:00
|
|
|
|
2018-11-18 23:43:52 +00:00
|
|
|
belongs_to :account, inverse_of: :account_stat
|
|
|
|
|
2019-10-01 00:19:11 +01:00
|
|
|
update_index('accounts#account', :account)
|
2018-11-18 23:43:52 +00:00
|
|
|
end
|