Better indexes

This commit is contained in:
syuilo
2018-10-29 21:53:40 +09:00
parent 24cfb93b2e
commit 5b84d29807
5 changed files with 9 additions and 0 deletions

View File

@@ -2,6 +2,8 @@ import * as mongo from 'mongodb';
import db from '../db/mongodb';
const NoteUnread = db.get<INoteUnread>('noteUnreads');
NoteUnread.createIndex('userId');
NoteUnread.createIndex('noteId');
NoteUnread.createIndex(['userId', 'noteId'], { unique: true });
export default NoteUnread;