mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-24 08:14:15 +00:00
21 lines
457 B
MySQL
21 lines
457 B
MySQL
|
CREATE TABLE /*_*/oathauth_users (
|
||
|
-- User ID
|
||
|
id int not null primary key,
|
||
|
|
||
|
-- Secret key
|
||
|
secret varchar(255) binary not null,
|
||
|
|
||
|
-- Secret key used for resets
|
||
|
secret_reset varchar(255) binary,
|
||
|
|
||
|
-- List of tokens
|
||
|
scratch_tokens varchar(512) binary not null,
|
||
|
|
||
|
-- List of tokens used for resets
|
||
|
scratch_tokens_reset varchar(512) binary not null,
|
||
|
|
||
|
-- Whether the user has validated their token
|
||
|
is_validated boolean not null
|
||
|
|
||
|
) /*$wgDBTableOptions*/;
|