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 sc
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");