Commit 6800725f authored by George Tziavas's avatar George Tziavas Committed by Christos Tranoris
Browse files

added anotation for the column name in order to avoid mysql syntax errors

parent 1daf0390
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@ package org.etsi.osl.oas.model;

import com.fasterxml.jackson.annotation.JsonProperty;

import jakarta.persistence.Column;
import org.hibernate.annotations.GenericGenerator;
import org.springframework.validation.annotation.Validated;

@@ -33,5 +34,6 @@ public class ActionCharacteristic {
	protected String name = null;
	
	@JsonProperty("value")
	@Column(name = "\"value\"")
	protected String value = null;
}