Remove todo about index on user_id in user_auth because it exists

This commit is contained in:
Sean Lafferty 2019-03-13 13:46:49 -04:00
parent 7e62394d01
commit de338338bf

View File

@ -115,7 +115,7 @@ func GetUserByAuthInfo(query *m.GetUserByAuthInfoQuery) error {
func GetAuthInfo(query *m.GetAuthInfoQuery) error {
userAuth := &m.UserAuth{
UserId: query.UserId, // TODO this doesn't have an index in the db
UserId: query.UserId,
AuthModule: query.AuthModule,
AuthId: query.AuthId,
}