From 9ab98243d48b1a39059ed4b951eba327ffb34bee Mon Sep 17 00:00:00 2001 From: Katy Ekey Date: Thu, 25 Jun 2026 15:07:25 -0400 Subject: [PATCH] feat!: Allow UCD Process ID to be null [#OCD-5318] --- changes/ocd-5318.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changes/ocd-5318.sql diff --git a/changes/ocd-5318.sql b/changes/ocd-5318.sql new file mode 100644 index 00000000..2098eca8 --- /dev/null +++ b/changes/ocd-5318.sql @@ -0,0 +1,5 @@ +-- After HTI-5 the user only has to specify one or the other of UCD Process or freetext details +-- so we need to allow the mapping to UCD Process to be null + +ALTER TABLE openchpl.certification_result_ucd_process +ALTER COLUMN ucd_process_id DROP NOT NULL;