chore: add unique index on af_users.uuid

This commit is contained in:
Bartosz Sypytkowski 2024-10-31 10:55:04 +01:00
parent a3a581ea4e
commit caf98789e1

View file

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