Files
danbooru/app/models/news_update.rb
2018-05-10 11:18:02 -07:00

6 lines
177 B
Ruby

class NewsUpdate < ApplicationRecord
belongs_to_creator
belongs_to_updater
scope :recent, -> {where("created_at >= ?", 2.weeks.ago).order("created_at desc").limit(5)}
end