I\'m very new to Node and I\'m getting my head around how ORM and Sequelize works. I\'ve been on the Sequelize website and copied the connection string and altered it to work wi
const sequelize = new Sequelize({ username: process.env.DBUSERNAME, host: process.env.DBHOST, database: process.env.DBNAME, password: process.env.DBPASSWORD, dialect: 'postgres', define: { timestamps: false, }, operatorsAliases: false, pool: { max: 5, min: 0, idle: 10000 }, });