I feel like I'm missing something obvious here..
I have a Post object and it has a draft attribute. It may be nil,
true or false. I want nil to be treated as false
Post.where(:draft => false) does not pick up the posts where draft is
unset(nil)
This leaves me to query with
Post.where('draft is NOT true')
Is there a cleaner way to do this? I prefer using hash conditions.
I could set the draft boolean before_save but it seems wasteful.
Thanks in advance
Tony
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
No comments:
Post a Comment