Merge pull request #954 from AppFlowy-IO/pg-indexes

chore: add unique index on af_users.uuid
This commit is contained in:
Bartosz Sypytkowski 2024-10-31 11:02:08 +01:00 committed by GitHub
commit 3f3439b498
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,4 @@
CREATE UNIQUE INDEX IF NOT EXISTS uq_af_user_uuid
ON af_user (uuid)
INCLUDE (uid);