Skip to content

Commit

Permalink
Issue #2445 - Update after review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Troy Biesterfeld <tbieste@us.ibm.com>
  • Loading branch information
tbieste committed Jun 3, 2021
1 parent 7920033 commit 3b209c2
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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();
}

/**
Expand Down

0 comments on commit 3b209c2

Please sign in to comment.