summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/OATHAuth/sql/mysql/tables.sql
blob: 1d531f04c2f80b6786884211d4013ae294bef141 (plain)
1
2
3
4
5
6
7
8
9
10
11
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*/;