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>

View file

@ -2,7 +2,7 @@
<column name="auth_key" type="varchar" size="60" notnull="notnull" unique="unique_key" />
<column name="member_srl" type="number" size="11" notnull="notnull" unique="unique_key" />
<column name="user_id" type="varchar" size="80" notnull="notnull" />
<column name="new_password" type="varchar" size="80" notnull="notnull" />
<column name="new_password" type="varchar" size="250" notnull="notnull" />
<column name="is_register" type="char" size="1" default="N" />
<column name="regdate" type="date" index="idx_regdate" />
</table>