Skip to content
Snippets Groups Projects
Commit 6504d1a8 authored by George Tziavas's avatar George Tziavas Committed by tranoris
Browse files

MySql Reserved word as column name

parent 2bf636b7
No related branches found
No related tags found
2 merge requests!7Merging 2024Q2_RC into main, creating 2024Q2 Release,!3MySql Reserved word as column name
...@@ -26,6 +26,7 @@ import jakarta.persistence.Entity; ...@@ -26,6 +26,7 @@ import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue; import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType; import jakarta.persistence.GenerationType;
import jakarta.persistence.Id; import jakarta.persistence.Id;
import jakarta.persistence.Column;
/** /**
* @author ctranoris * @author ctranoris
...@@ -44,6 +45,7 @@ public class PortalProperty { ...@@ -44,6 +45,7 @@ public class PortalProperty {
private String name = null; private String name = null;
@Basic() @Basic()
@Column(name = "\"value\"")
private String value = null; private String value = null;
public String getName() { public String getName() {
......
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