...

/

Wrapping Up: Make Changes with Changesets

Wrapping Up: Make Changes with Changesets

Review what we have learned about making changes with changesets.

We'll cover the following...

What have we learned so far?

We did a deep dive into the Ecto.Changeset module and saw the many functions to help us manage to make changes to our data. With its support for associations, changesets can modify related records across multiple tables, allowing us to make complicated changes with just a few lines of code.

However, we might need ...