...

/

Use Changesets Without Schemas

Use Changesets Without Schemas

Learn how to use changeset without schemas.

We'll cover the following...

Up to this point, our changesets have been based on the schemas defined in our music_db application, such as Artist, Genre, and so forth. Changesets don’t actually need Ecto schemas, though. They can be created with plain maps that define field names and types. This means that we can ...