Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Instruction
Create a Record
Overview
In the previous stages, you experienced how Sequelize simplifies the way you connect to SQL databases using plain JavaScript objects. You defined a 'Movie' and 'Person' model and created records in the Movies
and People
tables. Now you're ready to learn the methods Sequelize provides to perform CRUD operations (create, read, update, delete).
In this step, we'll explore two c...