Bạn có thể tham khảo tài liệu này http://docs.sequelizejs. com / en / new / docs / models-Definition / # indexes
Bạn sẽ cần thay đổi định nghĩa của mình như được hiển thị bên dưới và đồng bộ hóa cuộc gọi
var Tag = sequelize.define('Tag', {
id: {
type: DataTypes.INTEGER(11),
allowNull: false,
primaryKey: true,
autoIncrement: true
},
user_id: {
type: DataTypes.INTEGER(11),
allowNull: false,
},
count: {
type: DataTypes.INTEGER(11),
allowNull: true
},
name: {
type: DataTypes.STRING,
allowNull: true,
}
},
{
indexes: [
{
unique: true,
fields: ['user_id', 'count', 'name']
}
]
});