view NewTests/PostgresUpgrades/downgrade.sh @ 621:9f867dc595e2

fix concurrency tests
author Alain Mazy <am@osimis.io>
date Tue, 06 Feb 2024 16:20:40 +0100
parents 087888659ba3
children c76a8c783996
line wrap: on
line source

#!/bin/bash

pushd /scripts

# TODO: change pg-transactions by the plugin version number !
apt-get update && apt-get install -y wget && wget https://orthanc.uclouvain.be/hg/orthanc-databases/raw-file/tip/PostgreSQL/Plugins/SQL/Downgrades/Rev2ToRev1.sql
psql -U postgres -f Rev2ToRev1.sql

# if you want to test a downgrade procedure, you may use this code ...
# psql -U postgres -f downgrade.sql
popd