Mercurial > hg > orthanc-databases
view PostgreSQL/Plugins/SQL/Upgrades/UnknownToRev1.sql @ 592:5abad3976d9f find-refactoring
PG: new ChildrendIndex2 to replace ChildrendIndex
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Fri, 08 Nov 2024 16:19:46 +0100 |
parents | ff84104f7842 |
children |
line wrap: on
line source
-- add the revision columns if not yet done DO $body$ BEGIN IF NOT EXISTS (SELECT * FROM information_schema.columns WHERE table_schema='public' AND table_name='metadata' AND column_name='revision') THEN ALTER TABLE Metadata ADD COLUMN revision INTEGER; ELSE raise notice 'the metadata.revision column already exists'; END IF; IF NOT EXISTS (SELECT * FROM information_schema.columns WHERE table_schema='public' AND table_name='attachedfiles' AND column_name='revision') THEN ALTER TABLE AttachedFiles ADD COLUMN revision INTEGER; ELSE raise notice 'the attachedfiles.revision column already exists'; END IF; END $body$;