view NewTests/PostgresUpgrades/downgrade.sh @ 787:d753dc94de2c

support of 1.2.840.10008.1.2.1.99 in now enabled in the mainline
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 24 Feb 2025 08:03:48 +0100
parents de1ee0264916
children 5140a8917254 b5a146281887 b4ac775869b2
line wrap: on
line source

#!/bin/bash

pushd /scripts

apt-get update && apt-get install -y wget mercurial
hg clone https://orthanc.uclouvain.be/hg/orthanc-databases
hg update -r default
psql -U postgres -f /scripts/orthanc-databases/PostgreSQL/Plugins/SQL/Downgrades/Rev4ToRev3.sql

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