Today, let’s compare updating multiple child records using put_assoc vs Ecto.Multi.update. put_assoc is convenient if you want to do either 2 things: 1. associate a list of child records to the parent
2. add a new child record to the association. However, it might take more work and not optimal…