HHH-7717 Wrapped "SYS_USER" column names into "`SYS_USER`" as they can
be reserved in some dialects which would cause a test failure.
This commit is contained in:
parent
eb4b4ba0d2
commit
f63352b0f7
|
@ -11,7 +11,7 @@ import javax.persistence.ManyToMany;
|
||||||
import javax.persistence.Table;
|
import javax.persistence.Table;
|
||||||
|
|
||||||
@Entity( name = "sys_user" )
|
@Entity( name = "sys_user" )
|
||||||
@Table( name = "SYS_USER" )
|
@Table( name = "`SYS_USER`" )
|
||||||
public class SysUserOrm {
|
public class SysUserOrm {
|
||||||
|
|
||||||
private long userid;
|
private long userid;
|
||||||
|
|
Loading…
Reference in New Issue