blob: b5ef3b61b7deb271dbfac7c136b6b7b36c9d5f02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import * as mongo from 'mongodb';
import db from '../db/mongodb';
const NoteWatching = db.get<INoteWatching>('noteWatching');
NoteWatching.createIndex(['userId', 'noteId'], { unique: true });
export default NoteWatching;
export interface INoteWatching {
_id: mongo.ObjectID;
createdAt: Date;
userId: mongo.ObjectID;
noteId: mongo.ObjectID;
}
|