Update README.md (#25)

- fixed small typo
- added psql command for pgvector registration
This commit is contained in:
Jan Paluska
2024-12-06 18:22:46 +01:00
committed by GitHub
parent 995f5896f4
commit c463f5a57c

View File

@@ -112,7 +112,8 @@ sudo -u postgres psql
postgres=# create database immich;
postgres=# create user immich with encrypted password 'YOUR_STRONG_RANDOM_PW';
postgres=# grant all privileges on database immich to immich;
postgrse=# ALTER USER immich WITH SUPERUSER;
postgres=# ALTER USER immich WITH SUPERUSER;
postgres=# CREATE EXTENSION IF NOT EXISTS vector;
postgres=# \q
```