uniqueを適用できます複合インデックスの制約
、および index()を使用してMongooseでこれを行うことができますコード>
スキーマレベルでインデックスを定義するスキーマのメソッド:
var testSchema = db.Schema({
"one": { "type": String, "required": true },
"two": { "type": String, "required": true }
}, { "strict": false });
testSchema.index({ "one": 1, "two": 1}, { "unique": true });
var Test = db.model("Test", testSchema );