Drop column that should have been dropped in 3.4 to 3.5 migration

This commit is contained in:
James Agnew 2018-10-31 16:47:40 -04:00 committed by Eeva Turkka
parent db027c59ef
commit 81b4ee4ce2
1 changed files with 1 additions and 0 deletions

View File

@ -277,6 +277,7 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks<VersionEnum> {
Builder.BuilderWithTableName spp = version.onTable("HFJ_RES_PARAM_PRESENT");
version.startSectionWithMessage("Starting work on table: " + spp.getTableName());
spp.dropIndex("IDX_RESPARMPRESENT_SPID_RESID");
spp.dropColumn("SP_ID");
spp
.addColumn("HASH_PRESENCE")
.nullable()