添加重置密码缺失字段

This commit is contained in:
wsczx
2025-08-20 13:50:56 +08:00
parent a371e3408d
commit 033a8e1749

View File

@@ -123,4 +123,5 @@ type PasswordReset struct {
Token string `json:"token" xorm:"varchar(60) not null unique"`
UserId int `json:"id" xorm:"not null"`
ExpiresAt int `json:"expires_at" xorm:"not null"`
LastRequestTime int `json:"last_request_time" xorm:"int default 0"`
}