Better indexes
This commit is contained in:
parent
24cfb93b2e
commit
5b84d29807
5 changed files with 9 additions and 0 deletions
|
|
@ -5,6 +5,8 @@ import isObjectId from '../misc/is-objectid';
|
|||
import { pack as packUser } from './user';
|
||||
|
||||
const FollowRequest = db.get<IFollowRequest>('followRequests');
|
||||
FollowRequest.createIndex('followerId');
|
||||
FollowRequest.createIndex('followeeId');
|
||||
FollowRequest.createIndex(['followerId', 'followeeId'], { unique: true });
|
||||
export default FollowRequest;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue