Extension:OATHAuth/oathauth users table
The OATHAuth extension needs an extra database table to store the 2FA data of users. This is the database schema of the respective "oathauth_users" table:
MediaWiki version: | ≥ 1.41 |
See the information on the new oathauth_types, and oathauth_devices tables, which supersede the "oathauth_users" table.
MediaWiki version: | ≤ 1.40 |
mysql> describe oathauth_users;
+--------+----------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------+----------------+------+-----+---------+-------+
| id | int(11) | NO | PRI | NULL | |
| module | varbinary(255) | NO | | NULL | |
| data | blob | YES | | NULL | |
+--------+----------------+------+-----+---------+-------+