Exercise: Use Ecto's Upsert Feature
Practice how to execute upserts with Ecto in this challenge.
We'll cover the following...
Problem statement
In an earlier quiz, we defined a schema for a users
table in our app.
Press + to interact
defmodule MusicDB.User douse Ecto.Schemaschema "users" dofield :username, :stringfield :first_name, :stringfield :last_name, :stringfield :email, :stringfield :password, :stringendend
We’d like to seed our database with a large CSV file with user data that was exported from another ...