7 lines
212 B
Ruby
7 lines
212 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)}
|
|
attr_accessible :ip_addr
|
|
end
|