- fix apparently illegal Oracle identifier

This commit is contained in:
Steve Ebersole 2022-01-05 20:51:41 -06:00
parent a71ba9e385
commit 1131292fa9
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ public class BasicTypeElementCollectionTest extends BaseEntityManagerFunctionalT
private Long id;
@ElementCollection
@OrderColumn( name = "_position")
@OrderColumn( name = "phone_position")
private List<String> phones = new ArrayList<>();
//Getters and setters are omitted for brevity