International-Aerobatic-Club / iaccdb

IAC Aerobatic Contest Database
iaccdb.iac.org
1 stars 1 forks source link

Use transactions for all non-atomic updates #269

Open djmolny opened 3 weeks ago

djmolny commented 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.