Fix #1989 remove old limit of 60 chars for temporary password hash

This commit is contained in:
Kijin Sung 2022-03-11 01:48:19 +09:00
parent 9c07104eb2
commit 7a20ab3692
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
<column name="member_srl" var="member_srl" filter="number" notnull="notnull" />
<column name="user_id" var="user_id" notnull="notnull" />
<column name="auth_key" var="auth_key" notnull="notnull" minlength="1" maxlength="60" />
<column name="new_password" var="new_password" notnull="notnull" minlength="1" maxlength="60" />
<column name="new_password" var="new_password" notnull="notnull" />
<column name="is_register" var="is_register" default="N" />
<column name="regdate" default="curdate()" />
</columns>