mediawiki-extensions-OATHAuth/sql/mysql/tables.sql

12 lines
204 B
MySQL
Raw Normal View History

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*/;