Merge pull request #954 from AppFlowy-IO/pg-indexes
chore: add unique index on af_users.uuid
This commit is contained in:
commit
3f3439b498
|
|
@ -0,0 +1,4 @@
|
|||
CREATE UNIQUE INDEX IF NOT EXISTS uq_af_user_uuid
|
||||
ON af_user (uuid)
|
||||
INCLUDE (uid);
|
||||
|
||||
Loading…
Reference in New Issue