From 3b209c25cb1222394f2336c9fa852a08e28b0175 Mon Sep 17 00:00:00 2001 From: Troy Biesterfeld Date: Thu, 3 Jun 2021 10:24:24 -0500 Subject: [PATCH] Issue #2445 - Update after review comments Signed-off-by: Troy Biesterfeld --- .../src/main/java/com/ibm/fhir/schema/app/Main.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/fhir-persistence-schema/src/main/java/com/ibm/fhir/schema/app/Main.java b/fhir-persistence-schema/src/main/java/com/ibm/fhir/schema/app/Main.java index 8f10c76488b..cefaacd11fd 100644 --- a/fhir-persistence-schema/src/main/java/com/ibm/fhir/schema/app/Main.java +++ b/fhir-persistence-schema/src/main/java/com/ibm/fhir/schema/app/Main.java @@ -355,9 +355,6 @@ protected void updateSchema() { PhysicalDataModel pdm = new PhysicalDataModel(); buildCommonModel(pdm, updateFhirSchema, updateOauthSchema,updateJavaBatchSchema); - // TODO: Temporary for release 4.9.0, add warning that unused tables will be removed in a future release - logWarningMessagesForDeprecatedTables(); - // The objects are applied in parallel, which relies on each object // expressing its dependencies correctly. Changes are only applied // if their version is greater than the current version. @@ -405,6 +402,10 @@ protected void updateSchema() { // perform any updates we need related to the V0010 schema change (IS_DELETED flag) applyDataMigrationForV0010(); + + // Log warning messages that unused tables will be removed in a future release. + // TODO: This will no longer be needed after the tables are removed (https://github.com/IBM/FHIR/issues/713). + logWarningMessagesForDeprecatedTables(); } /**