【发布时间】:2019-01-12 17:54:36
【问题描述】:
范围:
scope :last_ten_minutes, -> { where('created_at > ?', Time.current - 10.minutes) }
scope :last_week, -> { where('created_at > ?', Time.current - 7.days) }
scope :last_hundred_days, -> { where('created_at > ?', Time.current - 100.days) }
该模型在数据库中大约有 500 000 条记录。它们经常与分页结合使用,但只能从管理面板使用。
【问题讨论】: