Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

ActiveRecord: Find blog links with futures too distant (See related posts)

badbloglinks = BlogLink.find(:all, :conditions => ["status='reserved' AND expires > ?", Time.now + 2.weeks])

Comments on this post

remvee posts on Apr 26, 2007 at 03:59
Time.now + 2.weeks
can also be written as
2.weeks.from_now

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts