Tôi đã tìm ra câu trả lời cho câu hỏi của chính mình ở đây.
User = new Schema({
username: {
type: String,
index: {unique: true}
}
});
Idea = new Schema({
Creator: {
type: Schema.ObjectId,
ref: 'User'
}
});