Reputation: 1420
I have to update a table with missing data from an importation. And I don't want paper trail to version this update. How can I skip the versioning for this one time execution without removing has_paper_trail from my model?
Upvotes: 0
Views: 1412
Reputation: 7616
In latest version, however, you can do it like
PaperTrail.request.disable_model(YourModel)
Upvotes: 1