diff options
author | Chan, Mercy <merce.chan@att.com> | 2019-09-09 16:41:56 -0400 |
---|---|---|
committer | Benjamin, Max (mb388a) <mb388a@att.com> | 2019-09-09 16:41:57 -0400 |
commit | db073432c2de9c8d248a0ff63d65b63a8fb920ca (patch) | |
tree | e3d09f415796d865513a8dc0cdc44adaf8f7175e /mso-api-handlers/mso-requests-db/src/main/java | |
parent | 42b399ea943940ef1e37c267a9aea03b5f01f2d0 (diff) |
updated all sql files including in tests to use
updated all sql files including in tests to use the correct column
name. Updated hibernate mapping to use the correct column name as well.
Issue-ID: SO-2297
Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com>
Change-Id: I4a2d3e82a7b182ea1d67d297c0a0d3a35c856255
Diffstat (limited to 'mso-api-handlers/mso-requests-db/src/main/java')
-rw-r--r-- | mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/beans/InfraRequests.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/beans/InfraRequests.java b/mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/beans/InfraRequests.java index 05845dd058..73e5e16324 100644 --- a/mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/beans/InfraRequests.java +++ b/mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/beans/InfraRequests.java @@ -117,7 +117,7 @@ public abstract class InfraRequests implements java.io.Serializable { private String vfModuleModelName; @Column(name = "AAI_SERVICE_ID", length = 50) private String aaiServiceId; - @Column(name = "AIC_CLOUD_REGION", length = 11) + @Column(name = "CLOUD_REGION", length = 11) private String aicCloudRegion; @Column(name = "CALLBACK_URL", length = 200) private String callBackUrl; |