password_tokens
Purpose: Used to store tokens used during password reset process.
Joins: users and schools tables.
Field | Type | Purpose |
---|---|---|
id | int(11) | Primary Key – auto increment. |
user_id | int(11) unsigned | ID of the user trying to reset password. |
token | char(16) | The token that has been emailed to the user. |
time | timedate | Time that the email address was submitted and the token created. |