From c463f5a57c49d686524e6aa021417959a486e21b Mon Sep 17 00:00:00 2001 From: Jan Paluska Date: Fri, 6 Dec 2024 18:22:46 +0100 Subject: [PATCH] Update README.md (#25) - fixed small typo - added psql command for pgvector registration --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a0e536..6fda676 100644 --- a/README.md +++ b/README.md @@ -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 ```