Skip to content
Snippets Groups Projects
Commit 16156fd5 authored by tranoris's avatar tranoris
Browse files

Merge branch '5-mysql-reserved-word-as-column-name' into 'develop'

MySql Reserved word as column name

See merge request !3
parents 2bf636b7 6504d1a8
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
Pipeline #4137 passed
...@@ -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