diff --git a/users/services/user-model.js b/users/services/user-model.js index 446a59f5..e5ee12de 100644 --- a/users/services/user-model.js +++ b/users/services/user-model.js @@ -208,7 +208,7 @@ const QuestionsRecord = sequelize.define('QuestionsRecord', { }); // Synchronize the model with the database -sequelize.sync({force:true}) +sequelize.sync({}) .then(() => { console.log('Model synchronized successfully with the database'); })