change judd DB to not recreate the DB (how was this left in to begin with?)

This commit is contained in:
kittentm 2026-03-15 04:03:25 +01:00
commit f15b3b432c
No known key found for this signature in database
GPG key ID: 520EDAA0C8CDE295

View file

@ -10,7 +10,7 @@ async function connect() {
try {
await sequelize.authenticate();
console.log('PostgreSQL connected.');
await sequelize.sync({ force: true });
await sequelize.sync({ alter: true });
console.log('PostgreSQL synchronized');
} catch (error) {
console.error('PostgreSQL connection error:', error);