Skip to content

Instantly share code, notes, and snippets.

@biographie
Created July 28, 2013 18:11
Show Gist options
  • Save biographie/6099489 to your computer and use it in GitHub Desktop.
Save biographie/6099489 to your computer and use it in GitHub Desktop.
2.0.0p195 :027 > Task.last
Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
=> #<Task id: 13, title: nil, task_category_id: nil, due_date: "2013-07-28 18:11:00", description: "Hello", completed_at: nil, company_id: 5, contact_id: 0, user_id: nil, created_at: "2013-07-28 18:11:00", updated_at: "2013-07-28 18:11:00">
2.0.0p195 :028 > Task.where(due_date: Date.today)
Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."due_date" = '2013-07-28'
=> []
2.0.0p195 :029 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment