From 814439f91d7c9f5bf539aa9681611b1b3b216bb8 Mon Sep 17 00:00:00 2001 From: Brandon LeBoeuf <54607186+brandonleboeuf@users.noreply.github.com> Date: Thu, 19 Nov 2020 10:44:23 -0800 Subject: [PATCH] Update utils.js Adding "operatorsAliases: 0," removes this error from the console: [SEQUELIZE0003] DeprecationWarning: String based operators are deprecated. Please use Symbol based operators for better security, read more at https://sequelize.org/master/manual/querying.html#operators --- start/server/src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start/server/src/utils.js b/start/server/src/utils.js index 82f24de97..3a565cfe6 100644 --- a/start/server/src/utils.js +++ b/start/server/src/utils.js @@ -37,7 +37,7 @@ module.exports.createStore = () => { const db = new SQL('database', 'username', 'password', { dialect: 'sqlite', storage: './store.sqlite', - operatorsAliases, + operatorsAliases: 0, logging: false, });