Skip to content
Snippets Groups Projects
Commit a704cf80 authored by Goik Martin's avatar Goik Martin
Browse files

Case sensitive relational table names

parent 4fa0afae
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ import java.math.BigDecimal;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
......@@ -48,6 +49,7 @@ import javax.xml.bind.annotation.XmlType;
*/
@Entity
@Table(name="Cd") // Like to See table name "Cd" rather than "CD"
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"title",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment