removed force:true from sequelize so that db saves

This commit is contained in:
Aster Fialla
2026-02-14 00:21:11 -05:00
parent 9f2164ac98
commit 7c143054bd

View File

@@ -48,7 +48,7 @@ database.check_connection = async function() {
}
async function syncModels() {
await sequelize.sync({force:true}).then((result) => {
await sequelize.sync().then((result) => {
console.log('Models synced successfully.');
}).catch((err) => {
console.error('Syncing models did not work', err);