From 84b3f4bff87963f9fb83dafaa9836b71cedb97c4 Mon Sep 17 00:00:00 2001 From: supaeasy <59504964+supaeasy@users.noreply.github.com> Date: Fri, 23 May 2025 20:27:03 +0200 Subject: [PATCH] Update postgres-db-upgrade Set New Version from 13 to 17 to allow Upgrades --- docker/prod/postgres-db-upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/prod/postgres-db-upgrade b/docker/prod/postgres-db-upgrade index 53e24022b8cb..bca336bb6cc0 100755 --- a/docker/prod/postgres-db-upgrade +++ b/docker/prod/postgres-db-upgrade @@ -3,7 +3,7 @@ set -e set -o pipefail CURRENT_PGVERSION="$(cat $PGDATA/PG_VERSION)" -NEW_PGVERSION="13" +NEW_PGVERSION="17" if [ "$CURRENT_PGVERSION" == "$NEW_PGVERSION" ]; then echo "Current and new postgres version are identical. Aborting."