Remove index from userId
This commit is contained in:
parent
f5a914330f
commit
472940cedc
1 changed files with 1 additions and 2 deletions
|
@ -9,5 +9,4 @@ CREATE TABLE IF NOT EXISTS users (
|
|||
);
|
||||
|
||||
-- Users are commonly searched by username and userId
|
||||
CREATE INDEX IF NOT EXISTS users_username_index ON users (username);
|
||||
CREATE INDEX IF NOT EXISTS users_userId_index ON users (userId);
|
||||
CREATE INDEX IF NOT EXISTS users_username_index ON users (username);
|
Loading…
Reference in a new issue