Możesz wymusić unikalny ograniczenie na indeksy złożone
, i możesz to zrobić w Mongoose za pomocą index()
metoda schematu, która definiuje indeksy na poziomie schematu:
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 );