问题
The Official Documentation doesn't explains clearly how define schemas for database by themselves. I'm assuming that Sequelize is more related to MySql than Postgres (where schemas are mandatory).
If I've already created some schemas in Postgres, how I could sync them with Sequelize?
回答1:
You can set the model with the schema using model.schema, something like:
var City = sequelize.define('City', {
id: {
type: sequelize.Sequelize.INTEGER,
primaryKey: true,
autoIncrement: true,
field: 'id'
},
name: {
type: sequelize.Sequelize.STRING,
field: 'name'
}
}, {
timestamps: false,
tableName: 'cities'
});
City.schema("public");
来源:https://stackoverflow.com/questions/39580973/node-js-defining-postgres-schemas-in-sequelize