Strapi deletes my collections and singles when restarting the server

It is the same as the one I posted earlier.

export default ({ env }) => ({
connection: {
client: ‘postgres’,
connection: {
host: env(‘DATABASE_HOST’, ‘-----’),
port: env.int(‘DATABASE_PORT’, 5432),
database: env(‘DATABASE_NAME’, ‘postgres’),
user: env(‘DATABASE_USERNAME’, ‘user’),
password: env(‘DATABASE_PASSWORD’, ‘password’),
ssl: env.bool(‘DATABASE_SSL’, false),
},
debug: true,
},
},
});