Rails请求的关系created_at低于哪里?

时间:2018-08-09 14:57:02

标签: sql ruby-on-rails

我需要选择AuthorsComments Posts低于created_at的所有some time

Author.include(:comments, :posts).
       where(comments: { created_at < 8.hours,ago}, posts: { created_at< 8.hours.ago } )`

作者可能没有任何评论或帖子。我该怎么办?

1 个答案:

答案 0 :(得分:-1)

这是在任何特定模型中查找最近创建的对象的方式:

Model.where(created_at: 5.days.ago..Time.current)

也许可以有所帮助