Better indexes
This commit is contained in:
		@@ -2,6 +2,8 @@ import * as mongo from 'mongodb';
 | 
			
		||||
import db from '../db/mongodb';
 | 
			
		||||
 | 
			
		||||
const NoteWatching = db.get<INoteWatching>('noteWatching');
 | 
			
		||||
NoteWatching.createIndex('userId');
 | 
			
		||||
NoteWatching.createIndex('noteId');
 | 
			
		||||
NoteWatching.createIndex(['userId', 'noteId'], { unique: true });
 | 
			
		||||
export default NoteWatching;
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user