Skip to content
This repository has been archived by the owner on May 1, 2021. It is now read-only.

Latest commit

 

History

History
4 lines (4 loc) · 288 Bytes

dbUniqueConstrains.md

File metadata and controls

4 lines (4 loc) · 288 Bytes

db.Category.createIndex( { "name": 1, "owner": 1 }, { unique: true } ) db.VocabularyList.createIndex( { "name": 1, "categoryID": 1 }, { unique: true } ) db.VocabularyList.createIndex( { "categoryID": 1 }, { unique: false } ) db.Vocabulary.createIndex( { "listID": 1 }, { unique: false } )