From eeec7cb962cf7bfa43506e8396fad68e8142b02f Mon Sep 17 00:00:00 2001 From: antanst <> Date: Thu, 31 Jul 2025 10:16:25 +0300 Subject: [PATCH] Remove dangerous DB sync from app.js --- backend/app.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/backend/app.js b/backend/app.js index 3a0cfcf..985a377 100644 --- a/backend/app.js +++ b/backend/app.js @@ -149,9 +149,6 @@ async function startServer() { // Create session store table await sessionStore.sync(); - // Sync database - await sequelize.sync(); - // Auto-create user if not exists if (config.email && config.password) { const { User } = require('./models');