When adding a new column through migration, update the model to keep it in sync with the database. No need to manually alter the table—migrations handle everything.
Steps:
Create a migration file and update the model.
Ensure { alter: false } in sync settings.
Run the migration in the terminal: npx sequelize-cli db:migrate --config./config/dbConnect.js
dbConnect.js manages the database connection.
This keeps schema changes organized and automated!