Add index

This commit is contained in:
syuilo 2018-04-06 23:32:38 +09:00
parent 3cf6eab119
commit 85d98f1e37

View file

@ -2,6 +2,7 @@ import * as mongo from 'mongodb';
import db from '../db/mongodb';
const PostWatching = db.get<IPostWatching>('postWatching');
PostWatching.createIndex(['userId', 'postId'], { unique: true });
export default PostWatching;
export interface IPostWatching {