커스텀 플러그인 때문에 디스코가 과부하 상태입니다. 도와주세요

아, 죄송하지만 인덱스를 설정하지 않습니다.
모델은 아래와 같습니다.

module DiscourseRewards
  class Reward < ActiveRecord::Base
    self.table_name = 'discourse_rewards_rewards'

    has_many :user_rewards
    belongs_to :created_by, class_name: 'User'

    default_scope { where(deleted_at: nil) }
  end
end
module DiscourseRewards
  class UserPoint < ActiveRecord::Base
    self.table_name = 'discourse_rewards_user_points'

    belongs_to :user
    belongs_to :user_badge
    belongs_to :user_points_category

    def self.user_total_points(user)
      UserPoint.where(user_id: user.id).sum(:reward_points)
    end
  end
end
module DiscourseRewards
  class UserReward < ActiveRecord::Base
    self.table_name = 'discourse_rewards_user_rewards'

    belongs_to :user
    belongs_to :reward

    enum status: [:applied, :granted]
  end
end

안전 모드에서 모든 플러그인을 비활성화했습니다. 하지만 아시다시피, 데이터베이스는 변경되지 않았습니다. :smiling_face_with_tear: