From 792ca3c691556420f48a744fe95f71b04060cd27 Mon Sep 17 00:00:00 2001 From: Tadgh Date: Thu, 3 Oct 2024 15:51:56 -0700 Subject: [PATCH] Add changelog (#6346) --- .../changelog/7_6_0/6339-drop-index-nondefault-schema.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_6_0/6339-drop-index-nondefault-schema.yaml diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_6_0/6339-drop-index-nondefault-schema.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_6_0/6339-drop-index-nondefault-schema.yaml new file mode 100644 index 00000000000..9f3dc6119c7 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/7_6_0/6339-drop-index-nondefault-schema.yaml @@ -0,0 +1,6 @@ +--- +type: fix +issue: 6339 +jira: SMILE-9044 +title: "Fixed a bug in migrations when using Postgres when using the non-default schema. If a migration attempted to drop a primary key, the generated SQL would only ever target the `public` schema. +This has been corrected, and the current schema is now used, with `public` as a fallback. Thanks to Adrienne Sox for the contribution!"