Immich - Promote User to Administrator
PostresSQL
Connect to the DB
(run from within shell in the postgres container)
psql immich postgres
List all users
SELECT * FROM users;
To promote an existing user
UPDATE users SET "isAdmin"='t' WHERE email='[email protected]';