DEV Community

Kenzy Limon
Kenzy Limon

Posted on

Getting Started on Elixir and Ecto Part 6

Updating Data

Updating records in Ecto requires us to first get a record from the database then create a changeset from that record and pass the new changes we want to make to that record, and finally, call the Ecto.Repo.update function.

Top comments (0)