sql >> Databasteknik >  >> RDS >> Mysql

Hur man definierar unikt index på flera kolumner i uppföljning

Du kan hänvisa till detta dokument http://docs.sequelizejs. com/en/latest/docs/models-definition/#indexes

Du måste ändra din definition som visas nedan och anropssynkronisering

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']
        }
    ]
});


  1. Mysql förvandlas till ’?

  2. importera sql-fil till en databas med wamp

  3. Kopiera data från Salesforce till SQL Server med Spectral Core

  4. Hur man inte visar dubbletter i SQL