disable identifier quoting for postgres compatibility

This commit is contained in:
Kevin Gatera 2026-03-02 17:07:10 -05:00
parent 920a7434f1
commit c7d14f7d30
No known key found for this signature in database
GPG key ID: F0D9F5932458CFB9
2 changed files with 7 additions and 6 deletions

View file

@ -296,7 +296,8 @@ class Database {
this.sequelize = new Sequelize(process.env.DATABASE_URL, {
dialect: 'postgres',
logging: logging,
benchmark: benchmark
benchmark: benchmark,
quoteIdentifiers: false
})
}