SEARCH_UUID should be non-null (#6165)
Avoid using constants in migrations because it creates false history.
This commit is contained in:
parent
b9f202d17c
commit
13ae273cbf
|
@ -473,7 +473,7 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks<VersionEnum> {
|
|||
|
||||
version.onTable(Search.HFJ_SEARCH)
|
||||
.modifyColumn("20240722.1", Search.SEARCH_UUID)
|
||||
.nullable()
|
||||
.nonNullable()
|
||||
.withType(ColumnTypeEnum.STRING, 48);
|
||||
|
||||
{
|
||||
|
@ -1026,7 +1026,7 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks<VersionEnum> {
|
|||
version.onTable(Search.HFJ_SEARCH)
|
||||
.addColumn("20230215.1", Search.SEARCH_UUID)
|
||||
.nullable()
|
||||
.type(ColumnTypeEnum.STRING, Search.SEARCH_UUID_COLUMN_LENGTH);
|
||||
.type(ColumnTypeEnum.STRING, 48);
|
||||
version.onTable(BulkImportJobEntity.HFJ_BLK_IMPORT_JOB)
|
||||
.addColumn("20230215.2", BulkImportJobEntity.JOB_ID)
|
||||
.nullable()
|
||||
|
@ -3146,7 +3146,7 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks<VersionEnum> {
|
|||
version.onTable("HFJ_SEARCH")
|
||||
.modifyColumn("20190814.7", "SEARCH_UUID")
|
||||
.nonNullable()
|
||||
.withType(ColumnTypeEnum.STRING, Search.SEARCH_UUID_COLUMN_LENGTH);
|
||||
.withType(ColumnTypeEnum.STRING, 36);
|
||||
|
||||
version.onTable("HFJ_SEARCH_PARM").dropThisTable("20190814.8");
|
||||
|
||||
|
|
Loading…
Reference in New Issue