With Ruby on Rails console, is it possible to query the database for all records created on a certain day?
something like
date = \"january 5 2013\" user
You can also do it like
User.where("created_at::date = ?", "january 5 2013".to_date)