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