fix: User entity passwordHash -> password column mapping
deploy-test / build-and-deploy-test (push) Successful in 2m31s
deploy-test / build-and-deploy-test (push) Successful in 2m31s
This commit is contained in:
+1
-1
@@ -14,7 +14,7 @@ public class User {
|
|||||||
@Column(length = 64, unique = true, nullable = false)
|
@Column(length = 64, unique = true, nullable = false)
|
||||||
private String username;
|
private String username;
|
||||||
|
|
||||||
@Column(length = 256, nullable = false)
|
@Column(name = "password", length = 256, nullable = false)
|
||||||
private String passwordHash;
|
private String passwordHash;
|
||||||
|
|
||||||
@Column(length = 128)
|
@Column(length = 128)
|
||||||
|
|||||||
Reference in New Issue
Block a user