Hey, how do I set a scope in rails 3 to todays records?
This doent work, yet. I get no data.
class MyModel < ActiveRecord::Base
scope :today, :conditions => { :created_at => Date.today }
end
I know that is a old question, but still can help anyone.
This was my way to solve this:
scope :today, -> { where(created_at: DateTime.now.beginning_of_day..DateTime.now.end_of_day) }
Since "created_at" column contains date and time, but you need compare only date, you have two ways (I assume you use MySQL) :
scope :today, lambda { WHERE("created_at BETWEEN '#{DateTime.now.beginning_of_day}' AND '#{DateTime.now.end_of_day}'") }
scope :today, lambda { WHERE('DATE(created_at) = ?', Date.today)}
also, you can add "created_on" column to the table with date only.
Updated:
def self.up
add_column table_name, :created_on, :date
add_column table_name, :updated_on, :date
end
scope :today, lambda { where(created_on: Date.today) }
I think you can define a general scope like this:
class MyModel < ActiveRecord::Base
scope :created_on, lambda {|date| {:conditions => ['created_at >= ? AND created_at <= ?', date.beginning_of_day, date.end_of_day]}}
def self.today
self.created_on(Date.today)
end
end
So you can use
>> MyModel.today #-> records created today
>> MyModel.created_on(Date.today - 1.week) #-> records created a week ago
Rails evaluates the scope at the class level so when you use :conditions => { :created_at => Date.today } it evaluates Date.today and compare all records with pre evaluated date. To avoid this use lamda to define date or time specific scopes
scope :today, lambda { :conditions =>[ "created_at = ? ", Date.today] }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With