comparison NewTests/PostgresUpgrades/downgrade.sh @ 615:087888659ba3

rename PG downgrade script
author Alain Mazy <am@osimis.io>
date Mon, 05 Feb 2024 09:50:24 +0100
parents f3475c3e42e5
children c76a8c783996
comparison
equal deleted inserted replaced
614:61e8cf2d78fd 615:087888659ba3
1 #!/bin/bash 1 #!/bin/bash
2 2
3 pushd /scripts 3 pushd /scripts
4 4
5 # TODO: change pg-transactions by the plugin version number ! 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 6 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
7 psql -U postgres -f V6.2ToV6.1.sql 7 psql -U postgres -f Rev2ToRev1.sql
8 8
9 # if you want to test a downgrade procedure, you may use this code ... 9 # if you want to test a downgrade procedure, you may use this code ...
10 # psql -U postgres -f downgrade.sql 10 # psql -U postgres -f downgrade.sql
11 popd 11 popd