3419d3ec84
* Bump chewy from 5.2.0 to 7.2.2 * fix style (codeclimate) * fix style * fix style * Bump chewy from 7.2.2 to 7.2.3
23 lines
689 B
Ruby
23 lines
689 B
Ruby
# 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
|
|
|
|
update_index('accounts', :account)
|
|
end
|