|
@ -19,13 +19,13 @@ public class UsersEntity { |
|
|
@Column(name = "secondname", nullable = true, length = 45) |
|
|
@Column(name = "secondname", nullable = true, length = 45) |
|
|
private String secondname; |
|
|
private String secondname; |
|
|
@Basic |
|
|
@Basic |
|
|
@Column(name = "password", nullable = true, length = 45) |
|
|
|
|
|
|
|
|
@Column(name = "password", nullable = true, length = 120) |
|
|
private String password; |
|
|
private String password; |
|
|
@Basic |
|
|
@Basic |
|
|
@Column(name = "email", nullable = true, length = 45) |
|
|
@Column(name = "email", nullable = true, length = 45) |
|
|
private String email; |
|
|
private String email; |
|
|
@Basic |
|
|
@Basic |
|
|
@Column(name = "username", nullable = true, length = 45) |
|
|
|
|
|
|
|
|
@Column(name = "username", nullable = true, length = 120) |
|
|
private String username; |
|
|
private String username; |
|
|
@Basic |
|
|
@Basic |
|
|
@Column(name = "Imgen", nullable = true, length = 150) |
|
|
@Column(name = "Imgen", nullable = true, length = 150) |
|
|