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
|
Hey, how do I set a scope in rails 3 to todays records? This doent work, yet. I get no data.
|
|||
|
|
|
Since "created_at" column contains date and time, but you need compare only date, you have two ways (I assume you use MySQL) :
also, you can add "created_on" column to the table with date only. Updated:
|
|||||||
|
|
I think you can define a general scope like this:
So you can use
|
|||||
|
|
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
|
||||
|
IMO this is the most understandable way to do it.
|
|||
|
|