mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-24 16:25:23 +00:00
12 lines
204 B
MySQL
12 lines
204 B
MySQL
|
CREATE TABLE /*_*/oathauth_users (
|
||
|
-- User ID
|
||
|
id int not null primary key,
|
||
|
|
||
|
-- Secret key
|
||
|
secret varbinary(255) null,
|
||
|
|
||
|
-- Scratch tokens
|
||
|
scratch_tokens varbinary(511) null
|
||
|
|
||
|
) /*$wgDBTableOptions*/;
|