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

tip: Database, For 'Event occurred' use bool from date. (See related posts)

From: http://jamis.jamisbuck.org/articles/2005/12/14/two-tips-for-working-with-databases-in-rails
First tip: I’ve found recently that if I have a boolean field in the database that is being used to mark whether some event occurred (referrals.pending, or feeds.subscribed) it is often more effective to make the field a datetime and record the moment that the event occurred. Then, a NULL can be used to indicate that the event has not yet occurred. Thus, you have referrals.applied_at with a method on Referral like this:
  def pending?
    applied_at.nil?
  end


This gives you the capability down the road to not only report whether the event occurred, but how frequently over various periods of time.

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


Click here to browse all 5147 code snippets

Related Posts