remove sync foreva

This commit is contained in:
counterweight 2025-03-10 15:52:15 +01:00
parent 107edb70e7
commit 78509e657b
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C

View file

@ -13,15 +13,6 @@ function buildDependencies() {
const AssociationsDefiner = require('./database/associations');
new AssociationsDefiner({ models, DataTypes }).define();
/* sequelize
.sync({ alter: true })
.then(() => {
console.log('Database synced');
})
.catch((err) => {
console.error('Error syncing the database:', err);
});
*/
const ServicesProvider = require('./services');
const services = new ServicesProvider({
models,