fix: fix some stuff
This commit is contained in:
parent
793f3f6834
commit
df9fa9f275
10 changed files with 132 additions and 24 deletions
|
@ -1,5 +1,6 @@
|
|||
package de.szut.casino.user;
|
||||
|
||||
import jakarta.persistence.Column;
|
||||
import jakarta.persistence.Entity;
|
||||
import jakarta.persistence.GeneratedValue;
|
||||
import jakarta.persistence.Id;
|
||||
|
@ -13,6 +14,8 @@ public class UserEntity {
|
|||
@Id
|
||||
@GeneratedValue
|
||||
private Long id;
|
||||
@Column(unique = true)
|
||||
private String keycloakId;
|
||||
private String username;
|
||||
private float balance;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue