Files
danbooru/app/models/advertisement_hit.rb
2013-03-19 23:10:10 +11:00

6 lines
185 B
Ruby

class AdvertisementHit < ActiveRecord::Base
belongs_to :advertisement
scope :between, lambda {|start_date, end_date| where("created_at BETWEEN ? AND ?", start_date, end_date)}
end