From 1736f196c1d259944446418d3effb8cac38f018f Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Mon, 8 Jan 2024 09:28:09 +0100 Subject: [PATCH] Update README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0000bd2..65b778c 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,9 @@ Self-hosted photo and video backup solution directly from your mobile phone. # Installation -You need to ensure your postgres server has the correct database created (immich, or whatever value you set as instance). This database must have 2 extensions created +You need to ensure your postgres server has the correct database created (immich, or whatever value you set as instance). This postgres instance must also have pgvecto.rs installed (v0.1.11). This database must have 3 extensions created ``` CREATE EXTENSION cube; CREATE EXTENSION earthdistance; +CREATE EXTENSION vectors; ```