Extension:OATHAuth/oathauth types table

The OATHAuth extension needs an extra database table to store the 2FA types data. This is the database schema of the respective "oathauth_types" table:

MediaWiki version:
1.41
mysql> describe oathauth_types;
+----------+----------------+------+-----+---------+----------------+
| Field    | Type           | Null | Key | Default | Extra          |
+----------+----------------+------+-----+---------+----------------+
| oat_id   | int(11)        | NO   | PRI | NULL    | auto_increment |
| oat_name | varbinary(255) | NO   | UNI | NULL    |                |
+----------+----------------+------+-----+---------+----------------+

See also the information on the accompanying "oathauth_devices" table.


MediaWiki version:
1.40

See the information on the "oathauth_users" table.

Category:Wikimedia extension database tables#oathauth types%20table
Category:Wikimedia extension database tables