DeprecationWarning: A boolean value was passed to options.operatorsAliases. This is a no-op with v5 and should be removed
问题 I'm getting below error on expressJs with Sequelize DeprecationWarning: A boolean value was passed to options.operatorsAliases. This is a no-op with v5 and should be removed. Any idea to fix this? 回答1: This is not an error, it's simply a warning stating that passing boolean values to operatorsAliases in sequelize options will be deprecated in v5. To remove the warning, replace the boolean value by '1' or '0' for true and false respectively. 回答2: Package versions: "sequelize": "^5.21.3",