Change names of two of catalogdb tables to lowercase 01/95201/1
authorElena Kuleshov <evn@att.com>
Mon, 9 Sep 2019 05:49:01 +0000 (01:49 -0400)
committerElena Kuleshov <evn@att.com>
Mon, 9 Sep 2019 05:51:03 +0000 (01:51 -0400)
Table name used in Hibernate for catalogdb tables all need to be in lowercase.

Issue-ID: SO-2292
Signed-off-by: Kuleshov, Elena <evn@att.com>
Change-Id: Ic2079a9d65c9c6d9d5468b9d62422b328f54d72c

mso-catalog-db/src/main/java/org/onap/so/db/catalog/beans/ControllerSelectionReference.java
mso-catalog-db/src/main/java/org/onap/so/db/catalog/beans/UserParameters.java

index 425e0b8..ac0d09b 100644 (file)
@@ -32,7 +32,7 @@ import org.apache.commons.lang3.builder.EqualsBuilder;
 
 @IdClass(ControllerSelectionReferenceId.class)
 @Entity
-@Table(name = "CONTROLLER_SELECTION_REFERENCE")
+@Table(name = "controller_selection_reference")
 public class ControllerSelectionReference implements Serializable {
 
     private static final long serialVersionUID = -608098800737567188L;
index c2cf2d7..9ec61ff 100644 (file)
@@ -17,7 +17,7 @@ import org.apache.commons.lang3.builder.ToStringBuilder;
 import com.openpojo.business.annotation.BusinessKey;
 
 @Entity
-@Table(name = "USER_PARAMETERS")
+@Table(name = "user_parameters")
 public class UserParameters implements Serializable {
 
     private static final long serialVersionUID = -5036895978102778877L;