mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-27 09:03:08 +02:00
Better indexes
This commit is contained in:
parent
9b8769f163
commit
26c979bcec
1 changed files with 3 additions and 3 deletions
|
@ -22,9 +22,9 @@ import SwSubscription, { deleteSwSubscription } from './sw-subscription';
|
|||
|
||||
const User = db.get<IUser>('users');
|
||||
|
||||
User.createIndex('username');
|
||||
User.createIndex('usernameLower');
|
||||
User.createIndex('token');
|
||||
User.createIndex(['username', 'host'], { unique: true });
|
||||
User.createIndex(['usernameLower', 'host'], { unique: true });
|
||||
User.createIndex('token', { unique: true });
|
||||
User.createIndex('uri', { sparse: true, unique: true });
|
||||
|
||||
export default User;
|
||||
|
|
Loading…
Reference in a new issue