NoteのuserIdに対してインデックスを張るように

This commit is contained in:
syuilo 2018-05-14 09:15:43 +09:00
parent 9f4624283d
commit 06461bb9ee

View file

@ -15,9 +15,8 @@ import Notification, { deleteNotification } from './notification';
import Following from './following';
const Note = db.get<INote>('notes');
Note.createIndex('uri', { sparse: true, unique: true });
Note.createIndex('userId');
export default Note;
export function isValidText(text: string): boolean {