741d0952b1
* Improve account counters handling * Use ActiveRecord::Base::sanitize_sql to pass values instead of interpolating them Keep using string interpolation for `key` as it is safe and using “ActiveRecord::Base::sanitize_sql_hash_for_assignment” would require stitching bits of SQL in a way that is not more easily checked for safety. * Add migration hook to catch PostgreSQL versions earlier than 9.5
21 lines
684 B
Ruby
21 lines
684 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
|
|
# lock_version :integer default(0), not null
|
|
#
|
|
|
|
class AccountStat < ApplicationRecord
|
|
belongs_to :account, inverse_of: :account_stat
|
|
|
|
update_index('accounts#account', :account)
|
|
end
|