From 8426ee61d212a4e98aa001301d8b721d20a47328 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sun, 3 Sep 2023 03:02:10 -0700 Subject: [PATCH] Improved upgrading instructions [skip ci] --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5be74c8..3245ada 100644 --- a/README.md +++ b/README.md @@ -595,13 +595,13 @@ pgvector is available on [these providers](https://github.com/pgvector/pgvector/ ## Upgrading -Install the latest version and run: +Install the latest version. Then in each database you want to upgrade, run: ```sql ALTER EXTENSION vector UPDATE; ``` -You can check the version with: +You can check the version in the current database with: ```sql SELECT extversion FROM pg_extension WHERE extname = 'vector';