Postgresql – Unique Indexes not working for Sequelize Model
I have a unique index for a model that's not working. Here is my model const Script = sequelize.define('Script', { name: { type: DataTypes.STRING, allowNull: false, }, deletedAt: { type: DataTypes.DATE, allowNull: true }, }, { indexes: [ { unique:…