view NewTests/PostgresUpgrades/downgrade.sh @ 656:7bfc8992ab8f Orthanc-1.12.4

updated CITATION.cff
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Jun 2024 17:53:34 +0200
parents c3aa39672db1
children
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/default/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