Tagged Questions
2
votes
5answers
1k views
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false?
I've added a before_create filter to one of my Rails ActiveRecord models and inside that filter I'm doing some database updates.
Sometimes I return false from the filter to prevent the creation of ...