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