Friends,
I have a simple query like this one:
ContactForm.where(:is_active => true).order(:name => :asc)
But I want one of my records to appear always first, so I prefixed it with a couple hyphens "--", however, the order clause is not swapping that record to the first place, in fact it's still in the middle, as it wouldn't have those hyphens.
What can be happening?
Thank you.