From 33cd559954f6367c0a66512f76bda6a6ea9b940c Mon Sep 17 00:00:00 2001 From: Juhyung Park Date: Mon, 17 Nov 2025 05:23:25 +0900 Subject: [PATCH] Install VectorChord extension to immich DB as well Signed-off-by: Juhyung Park --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c395e01..9b746fb 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,10 @@ postgres=# create database immich; postgres=# create user immich with encrypted password 'YOUR_STRONG_RANDOM_PW'; postgres=# grant all privileges on database immich to immich; postgres=# ALTER USER immich WITH SUPERUSER; -postgres=# CREATE EXTENSION IF NOT EXISTS vector; +postgres=# CREATE EXTENSION IF NOT EXISTS vchord CASCADE; +postgres=# \q + +sudo -u immich psql -U immich postgres=# CREATE EXTENSION IF NOT EXISTS vchord CASCADE; postgres=# \q ```