Update note-reaction.ts

This commit is contained in:
syuilo 2018-10-28 21:41:39 +09:00 committed by GitHub
parent cbc27be378
commit ffcb6aacf5

View file

@ -7,6 +7,8 @@ import Reaction from './note-reaction';
import { pack as packUser } from './user';
const NoteReaction = db.get<INoteReaction>('noteReactions');
NoteReaction.createIndex('noteId');
NoteReaction.createIndex('userId');
NoteReaction.createIndex(['userId', 'noteId'], { unique: true });
export default NoteReaction;