1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-03 00:25:57 +09:00
cherrypick/src/models/note-watching.ts

16 lines
420 B
TypeScript
Raw Normal View History

2018-04-08 02:30:37 +09:00
import * as mongo from 'mongodb';
import db from '../db/mongodb';
const NoteWatching = db.get<INoteWatching>('noteWatching');
2018-10-29 21:53:40 +09:00
NoteWatching.createIndex('userId');
NoteWatching.createIndex('noteId');
2018-04-08 02:30:37 +09:00
NoteWatching.createIndex(['userId', 'noteId'], { unique: true });
export default NoteWatching;
export interface INoteWatching {
_id: mongo.ObjectID;
createdAt: Date;
userId: mongo.ObjectID;
noteId: mongo.ObjectID;
}