Skip to content

Commit 3279365

Browse files
nareshboddepalliNaresh Boddepalli
andauthored
FIX: Players Model primary key auto generation configuration issue (anthropics#9)
Co-authored-by: Naresh Boddepalli <[email protected]>
1 parent be6ca1c commit 3279365

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/app/playerservicejava/model

1 file changed

+1
-1
lines changed

src/main/java/com/app/playerservicejava/model/Player.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class Player {
88

99
@Id
1010
@Column(name = "PLAYERID")
11-
@GeneratedValue(strategy = GenerationType.IDENTITY)
11+
@GeneratedValue(strategy = GenerationType.UUID)
1212
private String playerId;
1313

1414
@Column(name = "BIRTHYEAR")

0 commit comments

Comments
 (0)