How do I do the following in one operation:
- Find or create object by some key:value pairs
- Increment properties on the object.
I am doing this now:
Model.find_or_create_by_this_and_that(this, that).increment("a" => 1, "b" => 1)
What's the correct way to do that?