You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem using immortal with postgresql
When I try to destroy a model, the app segfaults when updating the database.
I think the problem is in method immortal_delete_all,
unscoped.update_all({:deleted => 1}, conditions)
should be
unscoped.update_all({:deleted => true}, conditions)
The text was updated successfully, but these errors were encountered:
I have a problem using immortal with postgresql
When I try to destroy a model, the app segfaults when updating the database.
I think the problem is in method immortal_delete_all,
unscoped.update_all({:deleted => 1}, conditions)
should be
unscoped.update_all({:deleted => true}, conditions)
The text was updated successfully, but these errors were encountered: