quick hack to optimize finding max valid fa_id

This commit is contained in:
Dylan Knutson
2025-07-27 20:24:06 +00:00
parent c43d1ca197
commit 4ed1c558b9
2 changed files with 11 additions and 1 deletions

9
sorbet/rbi/shims/aux.rbi Normal file
View File

@@ -0,0 +1,9 @@
# typed: strict
class DomainPostsFaAux < ActiveRecord::Base
extend T::Sig
sig { returns(T.nilable(Integer)) }
def fa_id
end
end