]> git.mxchange.org Git - friendica.git/blob - doc/database/db_2fa_recovery_codes.md
Updates database structure documentation
[friendica.git] / doc / database / db_2fa_recovery_codes.md
1 Table 2fa_recovery_codes
2 ===========
3 Two-factor authentication recovery codes
4
5 | Field | Description | Type | Null | Key | Default | Extra |
6 | ----- | ----------- | ---- | ---- | --- | ------- | ----- |
7 | uid | User ID | mediumint unsigned | YES | PRI |  |  |    
8 | code | Recovery code string | varchar(50) | YES | PRI |  |  |    
9 | generated | Datetime the code was generated | datetime | YES |  |  |  |    
10 | used | Datetime the code was used | datetime | NO |  |  |  |    
11
12 Return to [database documentation](help/database)