Advanced Search
Search Results
2 total results found
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]';
List Databases
PostresSQL
Connect to the PostgresSQL psql List all Databases \l Output Example List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+------------+-----...