annotate NewTests/PostgresUpgrades/downgrade.sh @ 735:be8f174d3c9d
find-refactoring tip
tools/find: Limit and Since are now forbidden when filtering on DICOM tags that are not stored in DB
author |
Alain Mazy <am@orthanc.team> |
date |
Thu, 24 Oct 2024 15:08:59 +0200 |
parents |
c76a8c783996 |
children |
e3d41c4168c3 |
rev |
line source |
599
|
1 #!/bin/bash
|
|
2
|
|
3 pushd /scripts
|
|
4
|
|
5 # TODO: change pg-transactions by the plugin version number !
|
650
|
6 apt-get update && apt-get install -y wget && wget https://orthanc.uclouvain.be/hg/orthanc-databases/raw-file/default/PostgreSQL/Plugins/SQL/Downgrades/Rev2ToRev1.sql
|
615
|
7 psql -U postgres -f Rev2ToRev1.sql
|
599
|
8
|
|
9 # if you want to test a downgrade procedure, you may use this code ...
|
|
10 # psql -U postgres -f downgrade.sql
|
|
11 popd |