]> git.mxchange.org Git - friendica.git/blob - doc/database/db_2fa_app_specific_password.md
Trailing whitespace removed
[friendica.git] / doc / database / db_2fa_app_specific_password.md
1 Table 2fa_app_specific_password
2 ===========
3
4 Two-factor app-specific _password
5
6 | Field           | Description                              | Type               | Null | Key | Default | Extra          |
7 | --------------- | ---------------------------------------- | ------------------ | ---- | --- | ------- | -------------- |
8 | id              | Password ID for revocation               | mediumint unsigned | NO   | PRI | NULL    | auto_increment |
9 | uid             | User ID                                  | mediumint unsigned | NO   |     | NULL    |                |
10 | description     | Description of the usage of the password | varchar(255)       | YES  |     | NULL    |                |
11 | hashed_password | Hashed password                          | varchar(255)       | NO   |     | NULL    |                |
12 | generated       | Datetime the password was generated      | datetime           | NO   |     | NULL    |                |
13 | last_used       | Datetime the password was last used      | datetime           | YES  |     | NULL    |                |
14
15 Return to [database documentation](help/database)