How can I set schema for all models at once at connection time for Sequelize Postgres?
问题 I'm able to set schema for ad-hock queries with sequelize.query(` SET SCHEMA 'schema_for_client_name' `); I'm also able to set schema for individual models User.init( { userId: { type: DataTypes.INTEGER, autoIncrement: true, primaryKey: true, }, email: { type: DataTypes.STRING, allowNull: false, }, firstName: { type: DataTypes.STRING, allowNull: false, }, lastName: { type: DataTypes.STRING, allowNull: false, }, password: { type: DataTypes.STRING, allowNull: false, }, salt: { type: DataTypes