Mercurial > hg > orthanc-databases
view SQLite/Plugins/InstallCustomData.sql @ 787:3d44e13cf9c5 pg-next-1099 tip
DeleteResource: remove warning when multiple clients are trying to delete the same resoure at the same time
| author | Alain Mazy <am@orthanc.team> |
|---|---|
| date | Mon, 08 Dec 2025 10:36:59 +0100 |
| parents | cd9521e04249 |
| children |
line wrap: on
line source
-- Add new column for customData ALTER TABLE AttachedFiles ADD COLUMN customData TEXT; ALTER TABLE DeletedFiles ADD COLUMN revision INTEGER; ALTER TABLE DeletedFiles ADD COLUMN customData TEXT; DROP TRIGGER AttachedFileDeleted; CREATE TRIGGER AttachedFileDeleted AFTER DELETE ON AttachedFiles BEGIN INSERT INTO DeletedFiles VALUES(old.uuid, old.filetype, old.compressedSize, old.uncompressedSize, old.compressionType, old.uncompressedHash, old.compressedHash, old.revision, old.customData); END;
