fix: User entity passwordHash -> password column mapping
deploy-test / build-and-deploy-test (push) Successful in 2m31s

This commit is contained in:
abcv7
2026-08-26 13:55:17 +08:00
parent 1164b51c64
commit f3002f23c2
@@ -14,7 +14,7 @@ public class User {
@Column(length = 64, unique = true, nullable = false)
private String username;
@Column(length = 256, nullable = false)
@Column(name = "password", length = 256, nullable = false)
private String passwordHash;
@Column(length = 128)