我的 stories.rb 模型上有以下 pg_search 范围:
  pg_search_scope   :with_text, 
                    :against => :title, 
                    :using => { :tsearch => { :dictionary => "english" }},
                    :associated_against => { :posts => :contents }
我希望查询返回忽略任何排名的结果(我只关心故事最后更新顺序 DESC 的日期)。我知道对于大多数查看它的人来说这是一个简单的问题,但是我如何关闭 pg_search 中的排名顺序?