change migration to correct table. (#1970)

* change migration to correct table.

QUESTION: Do we need to stub this migration and add new ones?

* fix variable name
This commit is contained in:
Ken Stevens 2020-07-07 05:45:39 -04:00 committed by GitHub
parent 79862c449a
commit 1e2505e548
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -123,9 +123,9 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks<VersionEnum> {
init510_20200610();
Builder.BuilderWithTableName pkgVerResMod = version.onTable("NPM_PACKAGE_VER_RES");
pkgVerResMod.modifyColumn("20200629.1", "PKG_DESC").nullable().withType(ColumnTypeEnum.STRING, 200);
pkgVerResMod.modifyColumn("20200629.2", "DESC_UPPER").nullable().withType(ColumnTypeEnum.STRING, 200);
Builder.BuilderWithTableName pkgVerMod = version.onTable("NPM_PACKAGE_VER");
pkgVerMod.modifyColumn("20200629.1", "PKG_DESC").nullable().withType(ColumnTypeEnum.STRING, 200);
pkgVerMod.modifyColumn("20200629.2", "DESC_UPPER").nullable().withType(ColumnTypeEnum.STRING, 200);
}
protected void init510_20200610() {