Persistent login tokens that have been issued. Tokens are only issued if the system setting PersistentLoginDays is set.
You can delete rows from this table to invalidate remembered logins, for example when a device is lost or compromised, or when a user should be required to sign in again.
| Name | Datatype | Read | Write | Primary key | Description |
|---|---|---|---|---|---|
| PersistentLoginTokenId | int | Yes | No | Yes | Primary key. |
| UserId | int | Yes | No | No | The user the token belongs to. |
| InsertDatetimeUtc | datetime2 | Yes | No | No | When the token was created. |
| ExpiresDatetimeUtc | datetime2 | Yes | No | No | When the token will expire. If the token has expired the user will have to log in again. |
| Hash | varbinary(32) | No | No | No | Hash of the user's cookie. |