]> git.mxchange.org Git - friendica.git/blob - doc/database/db_2fa_recovery_codes.md
Pad the header
[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 | NO   | PRI | NULL    |       |    
8 | code      | Recovery code string            | varchar(50)        | NO   | PRI | NULL    |       |    
9 | generated | Datetime the code was generated | datetime           | NO   |     | NULL    |       |    
10 | used      | Datetime the code was used      | datetime           | YES  |     | NULL    |       |    
11
12 Return to [database documentation](help/database)