Guest User

Untitled

a guest
Aug 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. rails 3 not nil
  2. MyModel.where(:some_id => !nil)
  3.  
  4. MyModel.where("some_id is not null")
  5.  
  6. MyModel.where(MyModel.arel_table['some_id'].not_eq(nil))
  7.  
  8. MyModel.where("some_id IS NOT NULL")
Add Comment
Please, Sign In to add comment