This commit is contained in:
syuilo 2018-04-15 12:40:48 +09:00
parent a2b9a66acd
commit 82c93fdcb8
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ User.createIndex('username');
User.createIndex('usernameLower');
User.createIndex(['username', 'host'], { unique: true });
User.createIndex(['usernameLower', 'host'], { unique: true });
User.createIndex('token', { unique: true });
User.createIndex('token', { sparse: true, unique: true });
User.createIndex('uri', { sparse: true, unique: true });
export default User;