I thought sequelize.sync() was magic and would add columns as I created them, but I was wrong! For now I will manually add the hasBeenQueried column to prevent multiple self-identification requests in #1, but using the migrations feature of Sequelize seems preferable in the long term.
I thought
sequelize.sync()
was magic and would add columns as I created them, but I was wrong! For now I will manually add thehasBeenQueried
column to prevent multiple self-identification requests in #1, but using the migrations feature of Sequelize seems preferable in the long term.