Update HapiFhirJpaMigrationTasks.java
Moving index status to be last operation
This commit is contained in:
parent
644b885ebe
commit
37bfd3e66e
|
@ -272,11 +272,6 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks<VersionEnum> {
|
|||
|
||||
replaceNumericSPIndices(version);
|
||||
replaceQuantitySPIndices(version);
|
||||
|
||||
// Drop Index on HFJ_RESOURCE.INDEX_STATUS
|
||||
version
|
||||
.onTable("HFJ_RESOURCE")
|
||||
.dropIndex("20220314.1", "IDX_INDEXSTATUS");
|
||||
|
||||
// Fix for https://github.com/hapifhir/hapi-fhir-jpaserver-starter/issues/328
|
||||
version.onTable("NPM_PACKAGE_VER")
|
||||
|
@ -335,6 +330,12 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks<VersionEnum> {
|
|||
// we will drop the updated column. Start with the index.
|
||||
tokenTable.dropIndexOnline("20220428.5", "IDX_SP_STRING_UPDATED");
|
||||
}
|
||||
|
||||
|
||||
// Drop Index on HFJ_RESOURCE.INDEX_STATUS
|
||||
version
|
||||
.onTable("HFJ_RESOURCE")
|
||||
.dropIndex("20220501.1", "IDX_INDEXSTATUS");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue