Skip to content

Commit 97b9c1c

Browse files
committed
fix: increase password field length
1 parent 658ccf3 commit 97b9c1c

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/taskagile/domain/model/user

1 file changed

+1
-1
lines changed

src/main/java/com/taskagile/domain/model/user/User.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class User extends AbstractBaseEntity {
2222
@Column(name = "email_address", nullable = false, length = 100, unique = true)
2323
private String emailAddress;
2424

25-
@Column(name = "password", nullable = false, length = 30)
25+
@Column(name = "password", nullable = false, length = 128)
2626
private String password;
2727

2828
@Column(name = "first_name", nullable = false, length = 45)

0 commit comments

Comments
 (0)