Skip to main content

Immich - Promote User to Administrator

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]';