Skip to content

Commit

Permalink
fix(sequelize): removed the deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Peshkov committed Nov 4, 2019
1 parent 607d11a commit 7c12962
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/sequelize.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ const getSequelize = () => new Sequelize(config.postgres.database, config.postgr
host: config.postgres.host,
port: config.postgres.port,
dialect: 'postgres',
logging: (sql) => logger.debug(sql),
operatorsAliases: false
logging: (sql) => logger.debug(sql)
});

let sequelize = getSequelize();
Expand Down

0 comments on commit 7c12962

Please sign in to comment.