Skip to content

Commit

Permalink
Merge branch 'rel_7_0' of https://github.com/hapifhir/hapi-fhir into …
Browse files Browse the repository at this point in the history
…rel_7_0
  • Loading branch information
Long Ma committed Mar 4, 2024
2 parents 8bea4d2 + 9c1e716 commit 512a352
Showing 1 changed file with 9 additions and 0 deletions.
Expand Up @@ -221,6 +221,15 @@ protected void init700() {
protected void init680() {
Builder version = forVersion(VersionEnum.V6_8_0);

// HAPI-FHIR #4801 - Add New Index On HFJ_RESOURCE
Builder.BuilderWithTableName resourceTable = version.onTable("HFJ_RESOURCE");

resourceTable
.addIndex("20230502.1", "IDX_RES_RESID_UPDATED")
.unique(false)
.online(true)
.withColumns("RES_ID", "RES_UPDATED", "PARTITION_ID");

Builder.BuilderWithTableName tagDefTable = version.onTable("HFJ_TAG_DEF");
tagDefTable.dropIndex("20230505.1", "IDX_TAGDEF_TYPESYSCODEVERUS");

Expand Down

0 comments on commit 512a352

Please sign in to comment.