comparison NewTests/PostgresUpgrades/downgrade.sh @ 599:f3475c3e42e5

run integ tests after a PG downgrade
author Alain Mazy <am@osimis.io>
date Thu, 18 Jan 2024 17:46:54 +0100
parents
children 087888659ba3
comparison
equal deleted inserted replaced
598:b9ae7c59fee9 599:f3475c3e42e5
1 #!/bin/bash
2
3 pushd /scripts
4
5 # TODO: change pg-transactions by the plugin version number !
6 apt-get update && apt-get install -y wget && wget https://orthanc.uclouvain.be/hg/orthanc-databases/raw-file/pg-transactions/PostgreSQL/Plugins/SQL/Downgrades/V6.2ToV6.1.sql
7 psql -U postgres -f V6.2ToV6.1.sql
8
9 # if you want to test a downgrade procedure, you may use this code ...
10 # psql -U postgres -f downgrade.sql
11 popd