Add some indexes

This commit is contained in:
syuilo 2018-04-14 14:42:18 +09:00
parent 39eab31714
commit 25a5fc5dba

View file

@ -22,6 +22,8 @@ import SwSubscription, { deleteSwSubscription } from './sw-subscription';
const User = db.get<IUser>('users');
User.createIndex('username');
User.createIndex('usernameLower');
User.createIndex(['username', 'host'], { unique: true });
User.createIndex(['usernameLower', 'host'], { unique: true });
User.createIndex('token', { unique: true });