108dcb3e61
これらの処理はパフォーマンス的に現実的でないし、すべてのモデルの関係を把握している必要があり保守が困難 論理削除でなんとかする
13 lines
348 B
TypeScript
13 lines
348 B
TypeScript
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;
|
|
}
|