xxxxxxxxxx
I recommend using sequelize migrations in development and production so that you are fully acclimate with the process which will give safe results,
also sequelize sync without force will only create new tables with the specified schema which are not present in database, it wont reflect alterations in existing table schema.
Sequelize migrations will help you update your database in a systematic and incremental manner.
Good luck !