mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-03-07 02:09:31 +00:00
HHH-10296 : Fix more DB reserved words used by tests
This commit is contained in:
parent
d5017c339c
commit
104635ba1f
@ -14,6 +14,8 @@
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.AttributeConverter;
|
||||
import javax.persistence.CollectionTable;
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Converter;
|
||||
import javax.persistence.ElementCollection;
|
||||
import javax.persistence.Entity;
|
||||
@ -74,6 +76,7 @@ public static class Customer {
|
||||
@Id
|
||||
private Integer id;
|
||||
@ElementCollection
|
||||
@Column(name = "`set`")
|
||||
private Set<Color> set;
|
||||
@ElementCollection
|
||||
@Enumerated(EnumType.STRING)
|
||||
|
Loading…
x
Reference in New Issue
Block a user