Open djmolny opened 3 weeks ago
The software currently makes database changes willy-nilly. If an operation fails part way through, the database may be left in an inconsistent state.
Wrap all major updates in an ActiveRecord::Base.transaction.
ActiveRecord::Base.transaction
The software currently makes database changes willy-nilly. If an operation fails part way through, the database may be left in an inconsistent state.
Wrap all major updates in an
ActiveRecord::Base.transaction
.